(function($)
	{
		$(
			function()
			{
				$(".columns #body .section>ul>li").equalheights();
				$(".statuses").status();
				$("#detail").detail();
				$("#galleries").galleries();
				$("#header a, a[rel=prev], a[rel=next]").delaynav(
					function(navigate)
					{
						$("#bg-image").fadeOut("slow");
						$("#body").fadeOut("slow",
							function()
							{
								navigate();
							}
						);
					}
				);
				$("#index #body, #clients #body, #contacts #body, #mailing-list #body, #detail #body, #privacy-policy #body, #moving-image #body").css(
					{
						display: "none",
						visibility: "visible"
					}
				).fadeIn("slow",
					function()
					{
						
						$("#bg-image").fadeIn("slow");
						$("#bg-image").fullscreen({marginTop: 45});
					}
				);
				
			}
		);
	}
)(jQuery.noConflict());