﻿$(document).ready(function () {
	if ($(document).width() < 1060) {
		$('#quote').hide();
	}
	$(window).resize(function () {
		if ($(document).width() < 1060) {
			$('#quote').hide();
		} else {
			$('#quote').show();
		}
	});
});

