$(document).ready(function() {

	$(".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;

	});

});

