
function cookiesTest(region, path){
var getCookie; 
getCookie = $.cookie('paretopartners');
//alert(getCookie);
if (!(getCookie == 'pareto')) {
	if((region=='NA')||(region=='AU'))
		window.location.replace("/disclaimer/disclaimer_NA.html?"+path);
	else if(region=='EMEA')
	
		window.location.replace("/disclaimer/disclaimer_EMEA.html?"+path);
	
	
	else
		window.location.replace("/disclaimer/disclaimer_long.html?"+path);
	}
	else{
		window.location.replace(path);
	}
}



$(document).ready(function() {
var getCookie; 
getCookie = $.cookie('paretopartners');

if (!(getCookie == 'pareto') && !$('#Pareto').get(0) && !$('#Disclaimer').get(0)) {

	if ($(".north_american").get(0)) {
		window.location.replace("/disclaimer/disclaimer_NA.html?" + window.location.pathname);
	}
	else if ($(".australasia").get(0)) {
		window.location.replace("/disclaimer/disclaimer_NA.html?" + window.location.pathname);
	}
	else if ($(".europe_and_middle_east").get(0)) {
		window.location.replace("/disclaimer/disclaimer_EMEA.html?" + window.location.pathname);
	}
	
	
	/*else {
		 
		window.location.replace("/disclaimer/disclaimer_long.html?" + window.location.pathname);
		
	}*/
}
});


