//pageTop.js
jQuery(function () {
        jQuery('.pagetop a').click(function () {
			jQuery(jQuery.support.boxModel ? navigator.appName.match(/Opera/) ? "html" : "html,body" : "body").animate({ scrollTop: 0 }, 1500, 'easeInOutQuart');
            return false;
		});
});


//jquery-fancybox-1.2.6.js
jQuery(document).ready(function() {
	jQuery("a.zoom").fancybox({
				
		'zoomSpeedIn'		:	500,
		'zoomSpeedOut'		:	500
			
	});
});