// JavaScript Document

$(document).includeReady(function () {		
		$("#utilities").load("../includes/utilities.html").wrap("<p style='margin-top:30px'></p>");
		$('body').supersleight();		
		$("#navbottomcontainer div").removeClass("navtop").addClass("navbottom");
		$(".navbottom>ul li:last-child").css("border-right","none");
		$("body>div:not('#zoom')").wrapInner("<div class='container'></div>");
		$(".navtop ul:first-child").css("border-left", "2px solid #fff");
		$('div#copy').append("<br style='clear:both;' />");	
		$('.side img:eq(0)').addClass("top");	
		$("h1").wrapInner("<strong></strong>");
		Cufon.replace('h1, h2, .navtop ul li a');		
		$('#header, .navtop, #splash, #copy, .navbottom, #footer, .container, #fancyzoom').css("visibility","visible");
		
		$(".logo").hover(
			function () {
				$("#home-btn").fadeIn();
			}, 
			function () {
				$("#home-btn").fadeOut();
			}
		);

}); 