

// rollover product to show large product view
/*
$(document).ready(function() {
		// swap the product image for the full preview
		$('.img_medium_placeholder').mouseenter(function() {
			var $clonedCopy = $(this);
			$(this).siblings().hide();
 			$(this).hide().queue(false);
			$('<div class="img_large_placeholder"><img class="img_large" alt="example"  src="<?=DEFAULT_IMG;?>" title="example.jpg" /></div>')	
			.appendTo($(this).parent());
		});
		$('.productwrapper').mouseleave(
			function() {
				$('div.img_large_placeholder').remove();
				$('.img_medium_placeholder').show();
				$('.img_medium_placeholder').siblings().show();
		});
});
*/
