// JavaScript Document

jQuery(function() {
	jQuery('#floating-tab').show();
	jQuery(window).resize(function ()  {
		if (jQuery(window).width() >= 1090) {
			jQuery('#floating-tab').show();
		} else {
			jQuery('#floating-tab').hide();
		}
	});
});
