// JavaScript Document

jQuery(function() {
	if (jQuery(window).width() >= 1260) {
		jQuery('#astro').show();
	}
	jQuery(window).resize(function ()  {
		if (jQuery(window).width() >= 1260) {
			jQuery('#astro').show();
		} else {
			jQuery('#astro').hide();
		}
	});
});
