windowonload(function(){
			$$$("div.zoomzoom a.zoomzoom").hover(function() {
				$$$(this).css({"z-index" : "1000"});
				$$$(this).find('img').stop()
				.animate({
					top: '-15px',
					left: '-20px',
					width: '160px',
					height: '119px'
				}, 350);
			}, function() {
				$$$(this).css({'z-index' : '5'});
				$$$(this).find('img').stop()
				.animate({
					top: '0',
					left: '0',
					width: '120px',
					height: '89px'
				}, 250);
			});
		});


