jQuery(document).ready(function(){

//Larger thumbnail preview

jQuery("#top-related-items li").hover(function() {
	jQuery(this).css({'z-index' : '200'});

	jQuery(this).find('div.image_display').addClass("hover").css({'z-index' : '210', 'font-weight' : 'bolder', 'border' : '1px solid #8BD5DF'}).stop()
		.animate({
			marginTop: '-35px',
			marginLeft: jQuery(this).attr('id') == 'related_0' ? '-2px' : jQuery(this).attr('id') == 'related_23' ? '-34px' : '-15px',
			top: '50%',
			left: '50%',
			width: '110px',
			height: '130px',
			padding: '0px'
		}, 200);

	jQuery(this).find('div.image_display img').css({'width' : '90px', 'height' : '79px', 'z-index' : '250'});
	jQuery(this).find('div.image_display div.related_name').css({'display' : 'block'});
	jQuery(this).find('div.image_display div.related_price').css({'display' : 'block'});

	} , function() {
	jQuery(this).css({'z-index' : '0'});
	jQuery(this).find('div.image_display').removeClass("hover").css({'border' : 'none'}).stop()
		.animate({
			marginTop: '0',
			marginLeft: '0',
			top: '0',
			left: '0',
			width: '70px',
			height: '52px',
			padding: '0px'
		}, 400);

		jQuery(this).find('div.image_display img').css({'width' : '60px', 'height' : '52px'});
		jQuery(this).find('div.image_display div.related_name').css({'display' : 'none'});
		jQuery(this).find('div.image_display div.related_price').css({'display' : 'none'});
});

});

