$(document).ready(function(){
	
	$(".socials a").hover(function(){
			$(this).animate({ height: "+=4px" }, "fast")
		}, function(){
			$(this).animate({ height: "-=4px" }, "fast")
		});	
	
	$("#slider ul").jcarousel({
		auto:4,
		scroll:1,
		wrap: "both",
		visible: 1
	});
	
	createOverlays("#");
	
	$("#").hover(function(){
			$(".overlay", this).show();
		}, function(){
			$(".overlay", this).hide();			
		});
		
		
	$("#").fancybox({
		
		'transitionIn'		:	'elastic',
		'transitionOut'		:	'elastic',
		'speedIn'			:	600, 
		'speedOut'			:	200, 
		'overlayShow'		:	true,		
		"showCloseButton"   :	true,
		"showNavArrows"     :   true
	
	});
	
	$("#").fancybox({
		
		'transitionIn'		:	'elastic',
		'transitionOut'		:	'elastic',
		'speedIn'			:	600, 
		'speedOut'			:	200, 
		'overlayShow'		:	true,		
		"showCloseButton"   :	true,
		"showNavArrows"     :   true
	
	});
		
});


function createOverlays(div)
{
	$.each($(div),function(){
		
	oldHtml = $(this).html();
	$(this).html(oldHtml+"#");
		
	});
}

