
window.addEvent('domready',function()
{	var body_id = document.location.href.split('/')[3] || 'home-page';
	$(document).getElement('body').set('id',body_id);

	
	$$('div#topContent ul li a').each(function(menu_link)
	{	//console.log(menu_link.href,' <> ', document.location.href,' == ',document.location.href.indexOf(menu_link.href));
		
		if(document.location.href.indexOf(menu_link.href) >= 0)
		{	
			if(document.location.href.test('/stadium-arena/'))
				menu_link.addClass('orange');
			else if(document.location.href.test('/contact-us/'))
				menu_link.addClass('orange');
			else if(document.location.href.test('/theatre-auditorium/'))
				menu_link.addClass('red');
			else if(document.location.href.test('/education-conference/'))
				menu_link.addClass('yellow');
			else if(document.location.href.test('/corporate-office/'))
				menu_link.addClass('pink');
			else if(document.location.href.test('/camatic-story/'))
				menu_link.addClass('white');
			else if(document.location.href.test('/project-gallery/'))
				menu_link.addClass('white');
			else if(document.location.href.test('/spectator-magazine/'))
				menu_link.addClass('white');
			else
				menu_link.addClass('highlight');
		
		}
	});
	
	if($('gallery-nav'))
	{
		$$('div#gallery img').fade('out');	
		$$('ul#gallery-nav li a').addEvent('click',function(e){
			//$$('div#gallery img').each(function(el){el.fade('out').fade('in');	});
			
			g_current_dsp_img.fade('out');
			g_current_dsp_img = $(this.href.split('#')[1]);
			g_current_dsp_img.fade('in');
			
			
			
			$$('ul#gallery-nav li a').removeClass('gallery-link-highlight');
			this.addClass('gallery-link-highlight');
			
		});
		g_current_dsp_img = $('gallery').getFirst();
		$('gallery-nav').getFirst().getNext().getFirst().addClass('gallery-link-highlight');
		g_current_dsp_img.fade('in');		
	}

	if($('nav2'))
		$('nav1').addClass('grey');
	if($('nav3'))
		$('nav2').addClass('grey');
	if($('nav4'))
		$('nav3').addClass('grey');
	if($('nav5'))
		$('nav4').addClass('grey');		
	
	
	
	if(document.location.href.test('/knowledge-centre-section/') && document.location.href.length > 51)
	{	//alert(document.location.href.length);
		$('col2').setStyle('display','block');
		$('col2').setStyle('width','590px');
		$('col2').setStyle('height','280px');
		$('col2').getFirst().setStyle('width','555px');
		$('col2').getFirst().setStyle('padding-top','5px');
		$('col2').getFirst().setStyle('padding-bottom','5px');
		$('col2').getFirst().setStyle('padding-left','15px');		
		$('col2').getFirst().setStyle('padding-right','15px');			
				
		$('col1').setStyle('background','url("/themes/camatic/images/hero_images/kc-hero-side.jpg") no-repeat scroll center center #333333');
		$('col1').setStyle('width','290px');
		
	}
});