﻿$(function () {
	$('#banner a').each(function () {
		$(this).css({
			'position': 'absolute',
			'height': '248px',
			'width': '722px',
			'left': '0px',
			'top': '0px'
		});
	});
	$('#banner').cycle({
		fx: 'scrollRight',
		random: 1,
		timeout: 7000
	});
	if ($('.featuredProduct')) {
		setFeaturedHeights();
	};
	if ($('.productImageLink')) {
		$(".productImageLink").jqzoom();
	};
});



function setFeaturedHeights() {
	var maximumFeaturedHeight = 0;
	var featuredProdsArray = $('.featuredProduct');
	featuredProdsArray.css('height', 'auto');
	featuredProdsArray.each(function (i) {
		var tmpHeight = $(this).height();
		if (tmpHeight > maximumFeaturedHeight) {
			maximumFeaturedHeight = tmpHeight;
		};
	});
	featuredProdsArray.css('height', maximumFeaturedHeight + 50);
}

function pageLoad(sender, args) {
	if ($('.featuredProduct')) {
		setFeaturedHeights();
	};
	if ($('.productImageLink')) {
		$(".productImageLink").jqzoom();
	};
}
