$(document).ready(function() {

// Animate buttons, move reflection and fade

	$(".slideinfo").hover(function() {
		$(this).stop().animate({ marginTop: "0px" }, 300);
			$(this).parent().find("div.s-num").stop().animate({ marginBottom: "-55px", opacity: 0.25 }, 500);
			$(this).parent().find("p.icon").stop().animate({ marginTop: "-15px", opacity: 1 }, 300);		
			$(this).parent().find("span").stop().animate({ marginTop: "-15px", opacity: 1 }, 300);
		},function(){
			$(this).stop().animate({ marginTop: "0px" }, 300);
			$(this).parent().find("div.s-num").stop().animate({ marginBottom: "0px", opacity: 1 }, 500);
			$(this).parent().find("p.icon").stop().animate({ marginTop: "0px", opacity: 1 }, 300);			
			$(this).parent().find("span").stop().animate({ marginTop: "0px", opacity: 0.45 }, 300);	
		});
	
	$("a[href$=.jpg],a[href$=.png],a[href$=.gif]").fancybox({});
	
	$("a.scr2").fancybox({
		'overlayColor'	: '#000',
		'transitionIn'	: 'fade',
		'transitionOut'	: 'elastic',
		'easingIn'      : 'easeOutBack',
		'easingOut'     : 'easeInBack',		
		
	});	
	
	$("a.videoLink").fancybox({
		'width'				: '800',
		'height'			: '468',
        'autoScale'     	: false,
        'transitionIn'		: 'fade',
		'transitionOut'		: 'fade',
		'type'				: 'iframe'
	});


});

