// JavaScript Document

jQuery().ready(function(){	
	// applying the settings
	jQuery('#theMenu').Accordion({
		active: 'h3.selected',
		header: 'h3.head',
		alwaysOpen: false,
		animated: true,
		showSpeed: 400,
		hideSpeed: 800
	});
	
	$("#menu").css("backgroundColor","#404040");	
		
	$(".head a").css("paddingLeft","20px");
	
	$(".head a").mouseover(function(){
		$(this).animate({"paddingLeft": "10px"}, 200);									
	});	
	
	$(".head a").mouseout(function(){
		$(this).animate({"paddingLeft": "20px"}, 200);									
	});		
	
	$("#homeLink").click(function(){
		window.location = "index.php";								
	});			
	
	$("#clientsLink").click(function(){
		window.location = "clients.php";								
	});	
	
	$("#teamLink").click(function(){
		window.location = "team.php";								
	});	
	
	$("#contactLink").click(function(){
		window.location = "contact.php";								
	});	
	
	$("#servicesLink").click(function(){	
		if ($("#menu").css("backgroundColor") != "#404040") {							  
			$("#menu").css("backgroundColor","#404040");			
		}
	});		
	
});	
