

$(document).ready(function(){
  
    if (document.getElementById("primaryNav")) {
        var theLinks = document.getElementById("primaryNav").getElementsByTagName("a");
        for (var i = 0; i < theLinks.length; i++)
        { if (theLinks[i].href == document.location.href) { theLinks[i].parentNode.className += " current"; } }
    }

	$("#subnav").children("li").each(function(i){
		i % 2 == 0 ? $(this).addClass("subnav_li_alt") : null;
	});

	jQuery(".home_carousel").jCarouselLite({
		btnNext: ".next",
		btnPrev: ".prev",
		visible: 6,
		auto: 1500,
		speed: 400
	});
	
	// lightbox
	$("a.imgMain, a.imgThumb").lightBox();
	// product details tabs
	$("#tabs").tabs();

	
  
});

$.PreloadImg = function() {
	for(var i=0; i<arguments.length; i++)
	{
		jQuery("<img>").attr("src", arguments[i]);
	}
}

