$(document).ready(function(){
	var thumbWidth = 110;
	$('#page').append('<div id="fancy_zoom_large"><img src="/core/admin/images/bnr-bg.gif" /></div>'); /* add popup contaiiner */	
	$(".fancyzoom img").attr("width", thumbWidth); /* change thumb width  */

	$(".fancyzoom").bind("click", function () {
		var largeImage = $(this).find("img").attr("src");				
		$("#fancy_zoom_large img").attr("src",largeImage); /* change popup image */				
			
		});
	$('.fancyzoom').fancyZoom();
	
//	$(".fancyzoom").bind("click", function () {
//		var largeImage = $(this).find("img").attr("name");				
//		$("#fancy_zoom_large img").attr("src",largeImage); /* change popup image */				
//			
//		});
//	$('.fancyzoom').fancyZoom();
});