/***********************************************
***  BUTTON ROLLOVER & PRELOAD  ****************
************************************************/
$(function(){
	// button rollover
	if ($('.imgBtn') != null) {
		$('.imgBtn').hover(function(){
				if(!$(this).is('.disabled'))
					$(this).attr("src", $(this).attr("src").replace(/^(.*-hover|.*)(\..*?)$/i,'$1-hover$2'));
			},
			function(){
					if(!$(this).is('.disabled'))
						$(this).attr("src", $(this).attr("src").replace(/^(.*)-hover(\..*?)$/i, '$1$2'));
				});
	}
	// preload image rollovers
	$("img.imgBtn, img[src^='images/buttons/btn'], input[src^='images/buttons/btn']").each(function(){
			$("<img>").attr("src", $(this).attr("src").replace(/(btn-.*)(\..*?)/i, '$1-hover$2'));
		});
});
/***********************************************
***  NAV SLIDING  ******************************
************************************************/
$(function(){
	$('#nav li').hover(function(){
			$(this).stop().animate({
					paddingLeft: 12
				}, 200);
		},
		function(){
				$(this).stop().animate({
						paddingLeft: 0
					}, 200);
			});
});
/***********************************************
***  COMPACT FORM (LABEL OVER INPUT)  **********
************************************************/
$(function(){
	$('form.compact input, form.compact select, form.compact textarea').focus(function(){
			$('label[for=' + $(this).attr('id') + ']').hide();
		});
	$('form.compact input, form.compact select, form.compact textarea').each(function(ele){
			if($(this).val().length > 0)
				$('label[for=' + $(this).attr('id') + ']').css({ display: "none" });
		});
	$('form.compact input, form.compact select, form.compact textarea').blur(function(){
			if($(this).val().length == 0)
				$('label[for=' + $(this).attr('id') + ']').show();
		});
	$('form.compact').removeClass('compact');
});
/***********************************************
***  CUSTOM SELECT BOX  ************************
************************************************/
$('html').addClass('jsEnabled');
/***********************************************
***  ZEBRA STRIPES  ****************************
************************************************/
$(function(){
	$(".productTable tr:nth-child(2n), .postageTable tr:nth-child(2n)").addClass("light");
});
