$(function(){
	
	$("a.imagezoom").each(function(){ 
			$(this).attr("href", $(this).attr("href").replace(/imgpopup/,"imgview"))
	});

	$("a.imagezoom").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	250, 
		'speedOut'		:	250, 
		'autoScale'		:	false,
		'overlayShow'	:	false
	});
});
