$(document).ready(function(){
	$("a[rel^='fancybox']").fancybox({
	 'zoomSpeedIn': 0,
	 'zoomSpeedOut': 0,
	 'overlayShow': true
    });
	
	$('#social-box-a').mouseenter(function(){
		$('#social-box').stop().animate({ left: '0px' }, 300);
		$('#social-box-a a img').attr('src', '/img/social-box-a_hover.png');
	});
	$('#social-box').mouseleave(function(){
		$('#social-box').stop().animate({ left: '-320px' }, 300);
		$('#social-box-a a img').attr('src', '/img/social-box-a.png');
	});
});

if($.browser.msie && $.browser.version<7)
	DD_belatedPNG.fix('.png');
