
// Objects that need to be hidden due an IE bug. 
function Objects() {};
with (Objects) {
	prototype._hiddenObjects = null;
	prototype.hide = function() {
		this._hiddenObjects = $('object').hide();
	};
	prototype.restore = function() {
		if (this._hiddenObjects) {
			this._hiddenObjects.show();
		}
	};
}


var movies = new Objects()



//New Danny --


$('document').ready( function(){

	$('.country').show();
		
	var moveThis = $('#lightBox').clone();
	
	$('#overlay').append(moveThis);
	
	$('.noJSexclusions').hide();
	
	$('#overlay #lightBox').addClass('withJS');
	
	
	
	
	
	$('.exclusions').click ( function(){

		$('#overlay').show();
		
		$('.frmRowCloseBtn').show();
		
		$('select').hide();
		

		return false;

	});
	
		$('.btnClose').click ( function(){

		$('#overlay').hide();

		$('select').show();

		return false;

	});
	
});
