$(document).ready(function() {
	
   $("ul#navbar").superfish({ 
      delay: 800,                          
      animation: {height:'show'}  // slide-down animation 
    }); 
	

	$("#sidebar .TreeView tr td:first-child").addClass("hide");
	$("#sidebar .TreeView tr td:only-child").addClass("unhide");
	$("#spec td.ItemStyle:first-child").addClass("first");
	$("#breadcrumbs a:first-child").addClass("first");
	$(".ProdList tr:last-child").addClass("last");
	

	
	$("#foot a[rel], .helpIcon[rel], .Description a[rel]").overlay({
		//mask: '#222',
		onBeforeLoad: function() {

			// grab wrapper element inside content
			var wrap = this.getOverlay().find(".contentWrap");

			// load the page specified in the trigger
			wrap.load(this.getTrigger().attr("href"));
		}

	});
	



}); //end doc ready




