// JavaScript Document

jQuery(function() {
	if (jQuery.cookie('astronaut') === null) {
		if (jQuery(window).width() >= 1260) {
			jQuery('#astro').show();
		}
	}
	jQuery(window).resize(function ()  {
		if (jQuery.cookie('astronaut') === null) {
			if (jQuery(window).width() >= 1260) {
				jQuery('#astro').show();
			} else {
				jQuery('#astro').hide();
			}
		}
	});
	jQuery('.hide-astro').click(function () {
		jQuery('#astro').hide();
		jQuery.cookie('astronaut', '1');
		return false;
	});
});
