$(window).load(function() {
	
	selectCurrentMenu();
	
	// Guida Michelin
	$('span#michelin').qtip({
		content: { url: clientData.app + '/tooltip.php?lang=' + clientData.lang}, 
		show: 'mouseover',
		hide: 'mouseout',
		style: { name: 'cream'},
		position: {
			corner: {
				target: 'topLeft',
				tooltip: 'bottomRight'
			}
		}
	});
});

function selectCurrentMenu() {
	var url = window.location;
	$('a[href|="' + url + '"]').addClass('select');
}
