$(document).ready( function(){
	//the logo
	//does not work in ie7
	if (fade_nav_in) { //only happens once per browser session
		
		//fade nav in
		$('#olc_logo').css({ display:'none' });
		$('#olc_logo').fadeIn("slow");

	}

		//the sun
		$('#olc_sun').css({ marginRight: "200px" });
		$('#olc_sun').animate({ marginRight: "0px" }, 15000 );
		$('#olc_sun img').css({ paddingTop: "100px"	});
		$('#olc_sun img').animate({ paddingTop: "30px" }, 15000 );

})
