// nav colour selector

window.addEvent('domready', function(){
	var mySlide 		= new Fx.Slide('contactPop').hide();  //starts the panel in closed state  
	var myPage 			= $('mainContent').get('name');//returns the actual coontent of the div

	setColours(myPage);
	
	$('contactPop').setStyle('height','auto');
	
	$('menu5').addEvent('click', function(e){

		e = new Event(e);
		mySlide.toggle();
		e.stop();
	});
	
});//close dom


var setColours = function(page){

	switch (page) {  
		
		case 'home' : 
		$('menu1').setStyle('background-color', '#f3731d');//apply background fill
		//$('menu2').addClass('testClass');
		$('colourBand').setStyle('background-color', '#f3731d');//apply background fill
		break; 
		
		case 'about' : 
		$('menu2').setStyle('background-color', '#f500c4');//apply background fill
		$('colourBand').setStyle('background-color', '#f500c4');//apply background fill
		break; 
		
		case 'services' : 
		$('menu3').setStyle('background-color', '#33f982');//apply background fill
		$('colourBand').setStyle('background-color', '#33f982');//apply background fill
		break; 
		
		case 'portfolio' : 
		$('menu4').setStyle('background-color', '#ea0d2c');//apply background fill
		$('colourBand').setStyle('background-color', '#ea0d2c');//apply background fill

		break; 
		
		case 'contact' : 
		$('menu5').setStyle('background-color', '#0dc3ea');//apply background fill
		$('colourBand').setStyle('background-color', '#0dc3ea');//apply background fill
		break; 

		default :
		break;  
	}  
	return null;  

};

