jQuery(document).ready(function(){
	
	
	// Do something with jQuery
	jQuery('#content .product-list .list-item').append('<img src="_skiny_users/shoper_blue-2/images/zoom.gif" alt="Detale" class="zoom" />');
	
	jQuery("#content .product-list a.image").hover(
	function () {
	jQuery(this).parent().find('.zoom').show();
	jQuery(this).parent().find('.zoom').css('display', 'block');
	},
	function () {
	jQuery(this).parent().find('.zoom').hide();
	}
	);

});
jQuery.noConflict();
jQuery(window).load(function () {
  jQuery('#content .product-list a.image img ').each(function() {
	var height = 115 - (jQuery(this).height() / 2);
	jQuery(this).css('top', height);
	});
});
