 $(document).ready(function() { 	
		// Space out the viewport, too lazy to CSS it ;s
		if($(document.body).height() < $(window).height()){
			$(".content").css({height:($(window).height()-200)+"px"})
		}
		$(".sub-nav").find("li a[href='"+window.location.href+"']").each(function(){
			$(this).parent().addClass("selected")
		})
		$("#top-nav").find("a[href='"+window.location.href+"']").each(function(){
			$(this).addClass("selectedLava")
		})
		$('#top-nav').lavaLamp({ });
		$('#banner').cycle({ timeout:6000, fx:'fade' });
	});