// JavaScript Document
/*function background(fundo) {
	$('body').css('background', "url(imagens/backgrounds/"+fundo+")");
	
}*/

$(function(){    
	var sessao = $.session("body_imagem");
	if (sessao==undefined){
		//alert("A sessao não está setada");
		$("body").css("background", "url(imagens/backgrounds/1.jpg) no-repeat fixed center bottom");
	}else{
		//alert(" sessão ESTÁ SETADA");
		$("body").css("background", "url('imagens/backgrounds/" + $.session("body_imagem") + "') no-repeat fixed center bottom");    
	}	
});	
function background(fundo) {
	$.session("body_imagem", "" + fundo + "");
	$('body').css('background', "url(imagens/backgrounds/"+ $.session("body_imagem") +") no-repeat fixed center bottom");
};