/*
 * Home image hover
 */
$(document).ready(function() {
	//$('#spotlight_image_box img').hover(
	//	function() {
	//		$('#spotlight_image_background').show();
	//	},
	//	function () {
	//		$('#spotlight_image_background').hide();
	//	}
	//);
	
	/**
	 * Select country lightbox
	 */
	//$('#CountrySelectLightbox').jqm( { 
	//	ajax: 'countryselect.html',
	//	trigger: 'a.countrySelector',
	//	target: '#LightboxContent'
	//} );
	
	$('div#headerTopRow a.countrySelector').fancybox( {
		frameWidth: 800,
		frameHeight: 471,
		overlayShow: true,
		overlayOpacity: 0.1
	});
});