// all scripts at the bottom of the page should be added here

/*	this is to add class on "a" w/ submenu for p7mon support
	just change #main-menu to whatever parent class or id of the p7menu
	Revome script if not using p7menu
	Revome script if using p7 tab menu*/

jQuery(document).ready( function() {

	jQuery(".sidemenu ul li:has(ul) > a").addClass("p7PMtrg2"); 
	jQuery(".IE7 .breadcrums ul li:last").css('background-image', 'none'); 

	/* QAISYS MAIN MENU FIX : ~Kai~ */
	// this solves the problem everytime an item is added or removed.
	// initially the SPANs won't have a class to avoid BC putting 'x_' each time an item is updated.
	// this script will provide the class to the SPANs respectively.
	jQuery("#nav_837713 li").children("a").each( function() {               
		jQuery(this).children("span").eq(0).addClass("sleft");
		jQuery(this).children("span").eq(1).addClass("sright");
	});

});






