$(document).ready(function() {
	currentURL = window.location;
	currentURL = currentURL.toString();
	
	if (currentURL.indexOf('.it') != -1) toSelect = currentURL.slice(28);
	
	if (currentURL.indexOf('.com') != -1) toSelect = currentURL.slice(29);
	
	if (toSelect == '/') toSelect = '/index.php';
	
	if (toSelect.indexOf('/de/paket') == 0) {
		URLParts = toSelect.split('/');
		toSelect = '/de/kategorie/' + URLParts[3] + '.php';
	}
	
	if (toSelect.indexOf('/it/pacchetto') == 0) {
		URLParts = toSelect.split('/');
		toSelect = '/it/categoria/' + URLParts[3] + '.php';
	}
	
	if (toSelect.indexOf('/packet') == 0) {
		URLParts = toSelect.split('/');
		toSelect = '/category/' + URLParts[2] + '.php';
	}
	
	$('a[href="' + toSelect + '"]').addClass('selected');
	
	if (toSelect.indexOf('/it') == 0) {
		toSelectLang = '/it/index.php';	
	} else if (toSelect.indexOf('/de') == 0) {
		toSelectLang = '/de/index.php';	
	} else {
		toSelectLang = '/index.php';
	}
	
	$('a[href="' + toSelectLang + '"][class="lang"]').addClass('selected');
	
});



