$(document).ready( function () {
	
	/* Show-hide. */
	$("div#cross-column-body a.show-hide").toggle( function () {
		$('div#cross-column-hide').slideUp("normal");
		$(this).children().attr("src","/images/show-box.png");
	}, function () {
		$('div#cross-column-hide').slideDown("normal");
		$(this).children().attr("src","/images/hide-box.png");
	});
	$("div.box-top a.show-hide").toggle( function () {
		$(this).parent().next().slideUp("normal");
		$(this).children().attr("src","/images/show-box.png");
	}, function () {
		$(this).parent().next().slideDown("normal");
		$(this).children().attr("src","/images/hide-box.png");
	});
	
	/* Time. */
	setInterval( function () {		
		var thours =  new Date().getHours();
		if ( thours < 10 ) thours = "0" + thours;
		var tminutes =  new Date().getMinutes();
		if ( tminutes < 10 ) tminutes = "0" + tminutes;
		var tseconds =  new Date().getSeconds();
		if ( tseconds < 10 ) tseconds = "0" + tseconds;		 
		$('div#time').text(thours + ":" + tminutes + ":" + tseconds);		
	}, 1000 );
	
	if( typeof renderMap == 'function' ) {
		renderMap();
	}
	
	/* Lightbox. */
	$("a.fancybox").fancybox();
	
});