// JavaScript Document

$(function(){	
	var proxyurl = "/php/proxy.php?url=";
	
	//POLL//	
	var url = "http://www.pepworldwide.nl/externalincludes/poll.php?language="+$('.fillpollwithajax').attr('lang');	

	$.get(proxyurl+escape(url), function(data){
	 	$('.fillpollwithajax').html(data);
		$('.fillpollwithajax').removeClass('.fillpollwithajax');
	});	
	
	//COUNTRY DROPOWN//
	var url = "http://www.pepworldwide.nl/externalincludes/countries.php";
	$.get(proxyurl+escape(url), function(data){
		$(data).appendTo(".country-select .dropdownlist .countries");
	});	
	
	//PEP WORLDWIDE DROPOWN//
	var url = "http://www.pepworldwide.nl/externalincludes/pepworldwide.php";
	
	//var url = "http://pep.dev/externalincludes/pepworldwide.php";
	$.get(proxyurl+escape(url), function(data){
		$('.pepworldwidecontent').html(data);
		
		//TRANSLATE// (Variables defined in language.js)
		$('#europe a').html(europe);
		$('#northamerica a').html(northamerica);
		$('#southamerica a').html(southamerica);
		$('#asia a').html(asia);
		
		$('.mail').html(address);
		$('.phone').html(phone);
		$('.fax').html(fax);
		$('.email').html(email);
		$('.website').html(website);
	});	
});

