$(function() {
	
	createCookie('temp', '1');
	cookies = readCookie('temp');
	
	if(cookies) {
		if(!readCookie('country')) {
				$('#ShowCountrySelect').fancybox({ 'overlayShow': true, 'hideOnContentClick': false, 'zoomSpeedIn' : 0, 'zoomSpeedOut': 0, 'frameWidth' : 460, 'frameHeight' : 415, overlayOpacity : .8  }).click();
		} else {	
			if(readCookie('country') != 'North America') {	
				var sure = confirm("You originally selected U.K. and Europe as your reigion, would you like to change it to North America?");
				if(sure) {
					eraseCookie('country');
					createCookie('country', 'North America', 365);
				} else {
					document.location = 'http://www.daydreameducation.co.uk';
				}
			}
		}
	}
	
	eraseCookie('temp');
	
	$('#CountrySelect img.select').click(function() {
		alert('what');
		createCookie('country', $(this).attr('alt'), 365); // One year...
		switch($(this).attr('alt')) {
			case 'Europe':
				document.location = 'http://www.daydreameducation.co.uk';
			break;	
			case 'North America':
				$.fn.fancybox.close()
			break;
		}
	});
	
	
});