$(document).ready(function () {
	$('.product_images a').fancybox();;
	$('.product_range .products .body').append('<div class="space" style="clear:both" />');
	productDivFix();
	setTimeout(productDivFix,500);
	$('.product_images a.main').append('<span class="magnifier" />');
});

function productDivFix() {
	var max1=0;
	var max2=0;
	$('.product_range .products .space').css('height',0);
	$('.product_range .products').each(function(i) {
		var h=$(this).outerHeight();
		if (i<2) {
			if (h>max1) max1=h;
		} else {
			if (h>max2) max2=h;
		}
	});
	$('.product_range .products').each(function(i) {
		var h=$(this).outerHeight();
		var max= (i<2) ? max1 : max2;
		$($(this).find('.space')).css('height',(max-h)+'px');
	});
}