$(document).ready(function() {

	$.cookie('TN_langauge', 'italian', { path: '/', domain: '.sabretravelnetwork.com', expires: 365 });
	$.cookie('TN_region', 'emea', { path: '/', domain: '.sabretravelnetwork.com', expires: 365 });

	$('a[href*=http:]').each(function() {
		if(this.className != "button ex" && this.className != "ex"){
			this.className += " external";
		}
	});
	$('a[href*=https:]').each(function() {
		if(this.className != "button ex" && this.className != "ex"){
			this.className += " external";
		}
	});
	$('a[href*=mailto:]').each(function() {
			this.className += " mailto";
	});

	$('a[href*=.pdf]').each(function() {
			this.className += " pdf";
	});
	
	$("#nav_serve ul").hide();
	
	$("#nav_serve").mouseover(function() {
		$("#nav_serve ul").show();
	});
	
	$("#nav_serve").mouseout(function() {
		$("#nav_serve ul").hide();
	});

	$("#nav_topics ul").hide();
	
	$("#nav_topics").mouseover(function() {
		$("#nav_topics ul").show();
	});
	
	$("#nav_topics").mouseout(function() {
		$("#nav_topics ul").hide();
	});
$.localScroll();
});