$(document).ready(function () {
	/*Fake Load Content*/
	$('#content').delay(4000).animate({opacity: 1}, 300);
	$("#loading").delay(100)
		.fadeIn('slow')
		.animate({opacity: 1.0}, 'slow')
		.delay(3000)
		.fadeOut('slow', function() {
		$(this).remove();
		});
	/*C/l/ock*/
	/*$('.jclock').jclock();*/
	/*Super Awesome Hovering Action*/
	$("div.container").hover(
	function(){
		$(".infobox", this).stop().css("visibility", "visible");

		},
	function(){
		$(".infobox", this).stop().css("visibility", "hidden");

		}
	);
});