$(document).ready(function(){
	
		$('html, body').animate({ scrollTop: 50 }, 0);

		ll=self.document.location.hash.substring(1);
		
		if(ll == "section1"){ 
		$("#home").attr("src","img/menu/home_yellow.png");	
		$("#about").attr("src","img/menu/aboutus.png");		
		$("#services").attr("src","img/menu/services.png");		
		}else if(ll == "section2"){
		$("#about").attr("src","img/menu/aboutus_yellow.png");
		$("#services").attr("src","img/menu/services.png");				
		$("#home").attr("src","img/menu/home.png");	
		}else if(ll == "section3"){
		$("#services").attr("src","img/menu/services_yellow.png");
		$("#home").attr("src","img/menu/home.png");	
		$("#about").attr("src","img/menu/aboutus.png");		
		}else{
		$("#home").attr("src","img/menu/home_yellow.png");	
		$("#about").attr("src","img/menu/aboutus.png");		
		$("#services").attr("src","img/menu/services.png");	
		}


	$("#home").click(function() {
	
		$(this).attr("src","img/menu/home_yellow.png");
		$("#about").attr("src","img/menu/aboutus.png");
		$("#services").attr("src","img/menu/services.png");

	});
	$("#bookacab").hover(
	
		function () {
		$(this).attr("src","img/menu/bookacab_yellow.png");
	  }, 
	  function () {
		$(this).attr("src","img/menu/bookacab.png");
	  });
	$("#services").click(function() {
	
		$(this).attr("src","img/menu/services_yellow.png");
		$("#about").attr("src","img/menu/aboutus.png");
		$("#home").attr("src","img/menu/home.png");
		
		$('#content_cycle').animate({
		height: '+=100'
	 	 }, 5000, function() {
		// Animation complete.
	  	});

	});
	
	$("#about").click(function() {
		
		$(this).attr("src","img/menu/aboutus_yellow.png");					   
		$("#services").attr("src","img/menu/services.png");
		$("#home").attr("src","img/menu/home.png");
	});
	
});

