//jQuery.noConflict();

jQuery(window).load(function(){
	jQuery("#body-background").ezBgResize();
	jQuery('body').css({"visibility": "visible"});
});

jQuery(document).ready(function() {
    if(move==1){
        jQuery(".content").css({"margin-left": -720 });
        animateContent();
    }
	hideButton();
});

jQuery(window).bind("resize", function(){
    jQuery("#body-background").ezBgResize();
});

function animateContent(){
	jQuery(".content").animate({
	marginLeft: 0
	}, 1000);
}
function hideButton(){
	jQuery(".content .close").click(function() {
		jQuery(".content").css({"display": "none"});
	});
}
