/*******************************************************************************

  CSS on Sails Framework
  Title: Site Name
  Author: XHTMLized (http://www.xhtmlized.com/)
  Date: July 2010

*******************************************************************************/



$('<div style="float: left; margin-top: -315px; width: 100%; height: 50%"></div>').insertBefore('div.container:eq(0)');  // making div#container vertically centered. margin-top is half the height of div#container




if($.browser.msie && $.browser.version=="6.0"){
	$('#navigation > ul > li').hover(
		function() { $(this).addClass("hover") },
		function() { $(this).removeClass("hover") }
	)
	DD_belatedPNG.fix('#navigation ul li h4 a, #navigation ul li ul li a');  // DD_belatedPNG fix for IE6
}
else if(/Mac/.test(navigator.userAgent)){
	$('html').addClass("mac");
}


$('body').css({ visibility: "visible" });
