$(document).ready(function() {

	$(".menu").each(function() { 
		$(this).show();
    });
	
	$(".menunojs").each(function() { 
		$(this).hide();
    });

	$("select#countryselector").change(function () {
		var sDestUrl = $("select#countryselector option:selected").attr("value");
		var sCountry = $("select#countryselector option:selected").html();
		var sProduct = $("h1 span").html()
		
		//alert(sCountry + " : " + sProduct)
		
		
		if (sDestUrl && sDestUrl.length > 0) { 
		
			
			
			var gaString = "/ELink/External/Products/Product-details.htm/" + sProduct + "/Countrylink/" +  sCountry + "/" + sDestUrl
			
			//alert(gaString)
			pageTracker._trackPageview(gaString)
			
			window.open(sDestUrl);
		}
	});
});
