$(document).ready(function() {
        
	$("a.fancy").fancybox({ 
		//'zoomSpeedIn': 300, 
		//'zoomSpeedOut': 300, 
		'overlayShow': true,
		'overlayOpacity': '0.95',
		'padding': false,
		'hideOnContentClick': false 
	}); 
	
	$("#header a").tooltip({ 
		track: true,
		delay: 1000,
		showURL: false,
		showBody: " - ",
		fade: 500,
		extraClass: "tooltip_head"
	}); 
	
	$(".thumb a").tooltip({ 
		track: true,
		delay: 500,
		showURL: false,
		showBody: " - ",
		id: "tooltip_none",
		extraClass: "tooltip_none",
		opacity: 0 
	}); 

	$("#header a").hoverIntent(	function()	{
		$(this).find("img").animate({'width':'80%'}, 200);
	},
	function()
		{
		$(this).find("img").animate({'width':'100%'}, 200);
		}
	);


		
	$('#mycarousel').jcarousel({
		animation: 500
	});
	
	$(".thumb").hoverIntent(
		function()
		{
			$(this).find(".thumb_info").animate({'top':'0px', 'opacity':'100'}, 500);
			
			$(this).parent().find(".thumb_link").animate({'opacity':'100', 'height':'20px'}, 200);
		},
		function()
		{
			$(this).find(".thumb_info").animate({'top':'300px', 'opacity':'0'}, 500);
			$(this).parent().find(".thumb_link").animate({'opacity':'0', 'height':'0'}, 200);
		}
	);

});
