$(document).ready(function() {
	if((screen.width<1280)){
		$("body").css({'background': '#f9aa2f url(images/bg_1024c.png) no-repeat fixed top center'});
	} 
	if ((screen.width>1280)){
		$("body").css({'background': '#f9aa2f url(images/bg_1440c.png) no-repeat fixed top center'});
	} else {
		$("body").css({'background': '#f9aa2f url(images/bg_1280c.png) no-repeat fixed top center'});
	}
	

	$(".ban-btn").click(function(){
	  $("#banners").slideToggle("slow");
	  $.cookie("closed", "banners");
	});

	$("a.image").fancybox({
		'titleShow'     : false,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic'
	});

	/* 
	$("#content").css("display", "none");

    $("#content").fadeIn(1000);
    
	$("ul.food a, ul.submenu a, ul.group a").click(function(event){
		event.preventDefault();
		linkLocation = this.href;
		$("#content").fadeOut(500, redirectPage);		
	});
		
	function redirectPage() {
		window.location = linkLocation;
	}*/

	
$(document).ready(function() {
    $('#list').jcarousel({
        vertical: true,
        scroll: 2
		    });
		});
});		