﻿$(document).ready(function(){
	$('#productGalleryContainer').show();
	$('#productGallery').find('a').attr('rel', 'lightbox-group1');
});
(function($) {
	$.fn.maxWidthFix = function() {
	
		if (!$.browser.msie) return false;
		if ($.browser.version >= 7) return false;

		var maxWidth = parseFloat($(this).css('max-width'));
		if (maxWidth == NaN) return false;

		return this.each(function() {
			var currentWidth = $(this).width();
			if (currentWidth > maxWidth) {
				var currentHeight = $(this).height();
				var heightAdjust = maxWidth  / currentWidth;
				var newHeight = currentHeight * heightAdjust;
				$(this).css('width', maxWidth + 'px');
				$(this).css('height', newHeight + 'px');
			}
		});
	};
})(jQuery);

