jQuery.noConflict();
(function($) {
	$(function() {
		// highlight main tabs
		$(".nav li a").each(function(i){
			var locarray = window.location.href.split("/");
			var thishref = $(this).attr('href');
			if (locarray[3]==thishref.substring(0)) {
				$(this).addClass('active');
			}
		});
		$("#left_col li a").each(function(i){
			// check location
			var locarray = window.location.href.split("/");
			var thishref = $(this).attr('href');
			// check title (detail page)
			var detailtitle = $(".title_page span").text();
			if (locarray[3]==thishref.substring(0) || detailtitle==$(this).text()) {
				// product category 
				$(this).addClass('active');
				// highlight product tab
				$(".nav li a").each(function(i){
					var thishref = $(this).attr('href');
					if (thishref.substring(0)=="products.aspx") {
						$(this).addClass('active');
					}
				});
			}
		});
	
	});
})(jQuery);