/*
Loading script for dinamic menus by Hugo Gómez Mac Gregor - GMG Web Programming
Url: www.hgmg.com.ar

*/
$(document).ready(function(){
	/* Category Main Menu filters
	 * Here I remove the listed url's
	 */
	

	$("#categoryMainMenu a").each(function(){
		switch($(this).attr("href")){
			case "/Fishing-Shirts/Fishing-Shorts/Fishing-T-Shirts/Hook-and-Tackle.aspx":
			case "/Luau-Shirts/Fishing-Shirts/Tropical-Shirts/Resort-Shirts.aspx":
			case "/Weekender-Shirts/Fishing-Shirts/Tropical-Shirts/Resort-Shirts.aspx": 
				$(this).parent().remove();
				break;
		}
		
	});
	
	
	
	
	
	
	/* Brand Menu filters
	 * Here I remove all url's but the listed ones and i remobe "Brand - " for each title
	 */
		//Hook & Tackle
	$("#brandMenu a").each(function(){
		switch($(this).attr("href")){
			case "/Fishing-Shirts/Fishing-Shorts/Fishing-T-Shirts/Hook-and-Tackle.aspx":
			case "/Luau-Shirts/Fishing-Shirts/Tropical-Shirts/Resort-Shirts.aspx":
			case "/Weekender-Shirts/Fishing-Shirts/Tropical-Shirts/Resort-Shirts.aspx": 
				$(this).text($(this).text().replace("Brand - ",""));
				break;
			default: $(this).parent().remove();
		}
		
	});
	
	
	


	/* Test Menu filters
	 * Here I remove the listed url's
	 */
 
	$("#testMenu a[href!='/Quality-Casual/Travel/Outdoor/Sun-Protection/Fishing/Men-Shirts.aspx']").parent().remove();
});

