$(function() {
	
	$.fn.preload = function() {
		this.each(function(){
			$('<img/>')[0].src = this;
		});
	}
	$(['http://www.farkaspastries.com/images/home-over.png','http://www.farkaspastries.com/images/history-over.png','http://www.farkaspastries.com/images/menu-over.png','http://www.farkaspastries.com/images/gallery-over.png','http://www.farkaspastries.com/images/contact-over.png']).preload();
		
	function enter(){
		var id = $(this).attr("id");
		$(this).addClass(id+"-over");
	};
	function leave(){
		var id = $(this).attr("id");
		$(this).removeClass(id+"-over");
	};
	
	$("#home").hover(enter,leave);
	$("#history").hover(enter,leave);	
	$("#menu").hover(enter,leave);	
	$("#gallery").hover(enter,leave);
	$("#contact").hover(enter,leave);
	
    $('#intro-image').cycle({ 
        fx:    'fade', 
        speed:  3800,
        pause:  1 	 
     });
	$("#menu-layout a").fancybox({
		'overlayShow' : true,
		'transitionIn' : 'elastic',
		'transitionOut' : 'elastic'
	});
	
	$("#x a").click(function(){
		var text = $("#x a").text();
		if(text == "close text box"){
			$("#sidebar").css("display","none");
			$("#x a").text("show text box");
			return;
		} else {
			$("#sidebar").css("display","block");
			$("#x a").text("close text box");
		}
	});	 			
});
