$("<link>").attr("type", "text/css").attr("rel", "stylesheet").attr("href", "http://www.cirquedalex.com/styles/scripts.css").attr("media", "screen").appendTo("head");
$(function(){
	$("<img>").attr("src", "/images/commons/veggie.png").attr("id", "veggie").appendTo("#nav").hide();
	$("#nav-menu").hover(function(){
			$("#veggie").show();
		}, 
		function(){
			$("#veggie").hide();
		});
	/*var mobile = '<div id="mobile"> \
				<div class="m-skip"><a href="#content">Skip to Content</a></div> \
				<div class="m-location"> \
					<h3>Tiffany Springs</h3> \
					<p class="m-address">7308 Tiffany Springs Pkwy<br /> \
						Kansas City, MO 64153</p> \
					<p class="m-phone">(816) 891-0608</p> \
					<h4>Hours</h4> \
					<p>Monday – Friday<br /> \
						11:00 AM – 5:00 PM</p> \
					<p>Saturday – Sunday<br /> \
						Closed</p> \
				</div> \
				<div class="m-location"> \
					<h3>Barry Road</h3> \
					<p class="m-address">7107 NW Barry Rd<br /> \
						Kansas City, MO 64153</p> \
					<p class="m-phone">(816) 587-4555</p> \
					<h4>Hours</h4> \
					<p>Monday – Thursday<br /> \
						11:00 AM – 9:00 PM</p> \
					<p>Friday – Saturday<br /> \
						11:00 AM – 10:00 PM</p> \
					<p>Sunday<br /> \
						1:00 PM – 7:00 PM</p> \
				</div> \
			</div> \
	';
	if ($("body").width() == 400) {
		$("#header").after(mobile);
	}*/
});
