$(document).ready(function() {
	$('#xmasEnabler').click(function() {
		$("#xmasWrapperPopUp").css("display", "block");
		$('#xmasWrapperPopUp').animate({
			top: '0px'
			}, 500, function() {
			// Animation complete.
		});
	});
	
	if ( $.browser.msie ) {
		$('#xmasCloseButton').click(function() {
			$("#xmasWrapperPopUp").css("display", "none");
		});
	}else{
		$('#xmasCloseButton').click(function() {
			$("#xmasWrapperPopUp").css("display", "block");
			$('#xmasWrapperPopUp').animate({
				top: '-690px'
				}, 500, function() {
				// Animation complete.
			});
		});
	}
});
