jQuery(document).ready(function(){
	//Country Modal Window
	var maskHeight = jQuery(document).height();
	var maskWidth = jQuery(window).width();
	jQuery('#PopupBg').css({'width':maskWidth,'height':maskHeight});	
	jQuery('#PopupBg').customFadeIn(1000, function() {});
	var winH = jQuery(window).height();
	var winW = jQuery(window).width(); 
	jQuery('#SelectCountry').css('top',  winH/2-jQuery('#SelectCountry').height()/2);
	jQuery('#SelectCountry').css('left', winW/2-jQuery('#SelectCountry').width()/2);
	jQuery('#SelectCountry').customFadeIn(2000, function() {});
	jQuery('#PopupBg').fadeTo("slow",0.8);
	
	jQuery('a.northern_ireland').livequery('click', function(e) {
		var result = jQuery(this).attr('title');
		jQuery.post("/includes/country_session.inc.php", { country_id: result }, 
        	function(country) {
				location.reload();
		});	
		return false;
	});
	
	jQuery('a.england, a.wales, a.scotland').livequery('click', function(e) {										
		jQuery('#SelectCountry .Warning').hide();
		jQuery('#SelectCountry .Warning').customFadeIn('fast', function() {});
		return false;
	});	
});
