
(function($) {
jQuery.fn.thumbnailFix = function() {
	var ie55 = (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion) == 4 && navigator.appVersion.indexOf("MSIE 5.5") != -1);
	var ie6 = (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion) == 4 && navigator.appVersion.indexOf("MSIE 6.0") != -1);

	if (jQuery.browser.msie && (ie55 || ie6)) {
		
		// Hide the overlays
		jQuery(this).find(".thumbnail-overlay").each(function() {
			jQuery(this).css('display', 'none');
		});
		
		// Resize thumbnail images
		jQuery(this).find(".thumbnail-image").each(function() {
			jQuery(this).css('width', '61px');
			jQuery(this).css('height', '78px');
			jQuery(this).css('background-position', '0 0');
			jQuery(this).css('border', 'solid 1px #ccc');
		});
	}
	
	return jQuery;
};

})(jQuery);