/* lostkore.es background selector*/

$(document).ready(function() {
	if($.cookie('bg')){ 
	var bg = $.cookie('bg');
	$("body").css("background", bg);
	}
	$("#bgsel li").click(function() {
        var imgLink = $("a", this).attr("rel");
        $("body").css("background", imgLink);
        $.cookie('bg', null);
        $.cookie('bg', imgLink, { path: '/', expires: 7 });
    });
    $("#bgsel").hover(function() {
	    bottom = $("#bgsel").css('bottom');
	    if(bottom<='-155px'){
	      nbottom='0px';
	    } else {
	      nbottom='-155px';
	    }
	    $("#bgsel").animate({ 
	      bottom: nbottom,
	    }, 500 );
    });
}); 

