$(document).ready(function() {

	$('ul.menu_top a')
	  .hover(function() {
	   $(this).stop().animate({ left: 20 }, 'fast');
	  }, function() {
	   $(this).stop().animate({ left: 0 }, 'fast');
	  });

	$(".product_img a").fancybox({
		'overlayShow'			: true,
		'zoomSpeedIn'			: 800,
		'zoomSpeedOut'			: 500,
		'easingIn'				: 'easeOutBack',
		'easingOut'				: 'easeInBack'
	});

	$("#photos a").fancybox({
		'overlayShow'			: true,
		'zoomSpeedIn'			: 800,
		'zoomSpeedOut'			: 500,
		'easingIn'				: 'easeOutBack',
		'easingOut'				: 'easeInBack'
	});

    $('a.newWindow').click(function(){
    window.open(this.href);
    return false;

	});

});

