$(document).ready(function(){
	$('body').addClass('hasJS');
	
	
	
	$('a.fancybox').each(function(){
		var url = $(this).attr('rel');
		var rel = $(this).attr('href');
		
		$(this).attr('rel', rel).attr('href', url);
	});
		
	$("a.fancybox").fancybox({
		'zoomSpeedIn'			: 600,
		'zoomSpeedOut'			: 500,
		'easingIn'				: 'easeOutBack',
		'easingOut'				: 'easeInBack',
		'hideOnContentClick'	: false,
		'overlayOpacity'		: 0.7
	});
	
	$('#flash').flash({
		src: 'http://www.youtube.com/p/40A31A19CF4532B1?version=3&hl=en_US',
		width: '434',
		height: '348'
	}, {update: false});
	
	$('.social-icon').hover(function(){
		$('img',$(this)).stop().animate({'bottom':'5px'},200);
	}, function(){
		$('img',$(this)).stop().animate({'bottom':'0'},200);
	});	
});
