(function ($) {
	$(document).ready (function () {
		var icons = $('div.main_window_home img');
		$.each (icons, function (i,item) {
			// Get the product id (from id in form id="icon_##")
			var id = $(this).attr ('id').substr (
				5,
				$(this).attr ('id').length
			);
			
			if (id < 81) {
				$(this).parent ()
					.click (function () { return true; })
					.attr ('href', 'products.htm?product=' + id);
			} else {
				$(this).parent ()
					.click (function () { return true; })
					.attr ('href', 'lifestyle.htm?product=' + id);
			}
		});
	});
})(jQuery);