$(function() {
	var l = document.location.href;
	var menu1 = [ ['/offerta-sky'], ['/area-clienti', '/tstecnico'], ['business'] ];
	var menu2 = [
		[ ['/pacchetti-canali'], ['/decoder-hd'], ['/servizi'], ['/prezzi-promozioni'] ],
		[ ['/fai-da-te'], ['/promozioni-e-offerte'], ['/solo-per-te', '/booking','/13_canali_hd'], ['/assistenza-e-supporto'], ['contatta-sky'] ],
		[ ['/skybar'], ['skyhotel'], ['punti-scommesse'], ['uffici-partita-iva'] ]
	]
	$.each(menu1, function(i) {
		var found = false;
		$.each(this, function() {
			if(l.indexOf(this) != -1) {
				$("#menuSite li a:eq("+i+")").addClass("active");
				menu2 = menu2[i];
				found = true;
				return false;
			}
		});
		return !found;
	});	
	$.each(menu2, function(i) {
		var found = false;
		$.each(this, function() {
			if(l.indexOf(this) != -1) {
				$(".li_menu_section:eq("+i+")  > a").addClass("active");
				found = true;
				return false;
			}
		});
		return !found;
	});
			
});

function openPopup(width, height, top, left, url) {
	window.open(url,"","width="+width+",height="+height+",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,top="+top+",left="+left);
}

