$(document).ready(function() {


	$('#holiday_shipping_link').click(function() {
		if ($('#holidayPop').is(':visible')) {
			$('#holidayPop').fadeOut('fast');
		} else {
			$('#holidayPop').fadeIn('fast');
		}
	});
	
	$('#holiday_shipping_close_button').click(function() {
		$('#holidayPop').fadeOut('fast');
	});
	
	
});
