jQuery(function() {
	jQuery("#product_image_feature a:has(.small)").click(function() {
		jQuery("#product_image_feature a:has(.small)").css('display', 'inline');
		var targImg = jQuery(this).css('display', 'none').attr('href');
		jQuery("#product_image_feature a:has(.medium)").css('display', 'none');
		jQuery("#product_image_feature a[href='"+targImg+"']:first").css('display', 'block');
		return false;
	});
	jQuery("#product_image_feature a:has(.medium)").click(function() {
		return false;
	});
	
	jQuery("#product_image_feature a:has(.medium)").css('position', 'absolute');
	
	var marginTop = 0;
	var tallest;
	jQuery("#product_image_feature a:has(.medium)").each(function() {
		if(jQuery(this).height() > marginTop) {
			marginTop = jQuery(this).height();
			tallest = jQuery(this);
		}
	});
	
	jQuery("#product_image_feature a[href='"+tallest.attr('href')+"']:last").click();
	jQuery("#product_image_feature a:has(.medium)").css('marginTop', '-'+marginTop+'px');
	jQuery("#product_image_feature").css('paddingTop', marginTop+'px');
});