
// Even out the Product teasers
jQuery(document).ready(function($) {
	if ($('div.listProds div.prod').size() < 1) { return; }
//	setTimeout(function() { equalHeight($('div.teaser h2')); }, 5);
//	setTimeout(function() { equalHeight($('div.teaser')); }, 5);
	setTimeout(function() { equalHeight($('div.listProds div.prod h3'), false); }, 5);
	setTimeout(function() { equalHeight($('div.listProds div.prod'), true); }, 5);

});
function equalHeight(group, forcetall) {
    tallest = 0;
    group.each(function() {
        thisHeight = jQuery(this).height();
        if(thisHeight > tallest) {
            tallest = thisHeight;
        }
    });
    group.height(tallest);
}




jQuery(document).ready(function($) {
	if ($('table.SizeChart').size() < 1) { return; }
	$('table.SizeChart tr:even').addClass('alt');
	$('table.SizeChart tr').hover(function() {
		$(this).addClass('hover');
	},function() {
		$(this).removeClass('hover');
	});
	
});