// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

jQuery(document).ready(function($) {

	// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

	determineBodyClass();
	sortLogo();

	// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

	function determineBodyClass()
	{
		var now = new Date();
		var h = now.getHours();

		if ((h > 17) || (h < 8))
			$("body").addClass("night");
		else
			$("body").addClass("day");
	}

	// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

	function sortLogo()
	{
		$("div#logo img").css({"opacity": "0"});
	}

	// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

	$("#box").hover(
		function() {
			$("div#logo img").stop().animate({"opacity": "1"}, "slow");
		},
		function() {
			$("div#logo img").stop().animate({"opacity": "0"}, "fast");
		});
	});

// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
