
;(function($) {
	$(document).ready(function() {
		$('#accepted').click(function(){
			// set today
			var today = new Date();
			today.setTime( today.getTime());
			// set expireDate
			var expiresInMS = 1000*60*60*24*364*2; // two years
			var expireDate = new Date(today.getTime() + (expiresInMS));
			// set cookie
			document.cookie = 'accessAllowed=1; path=/; expires='+ expireDate.toGMTString(); 
			// reload page
			window.location.href = document.referrer;
		});
	
		$('#notAccepted').click(function(){
			// not accepted the terms.. redirect
			window.location.href = notacceptedpath;
		});
		
		$('#chooseCountryForm').submit(function(){
			$('input[name=countryName]').val($('#selectedCountry :selected').text());;
		});
	});
})(jQuery);
