var loadHeaderDropdowns = function() {			
	  $("#incometax").parent().hover(function() { 
		$(this).children("a").css("background-color", "#000099");
		$(this).children("ul").show();
		$(this).children("ul").css("background-color", "#000099");
	  }, function() {
		$(this).children("ul").hide();
		$(this).children("a").css("background-color", "transparent");
	  });
	  
	  $("#commoditytax").parent().hover(function() { 
		$(this).children("a").css("background-color", "#42276E");
		$(this).children("ul").show();
		$(this).children("ul").css("background-color", "#42276E");
	  }, function() {
		$(this).children("ul").hide();
		$(this).children("a").css("background-color", "transparent");
	  });	
	  
	  $("#frag").parent().hover(function() { 
		$(this).children("a").css("background-color", "#669933");
		$(this).children("ul").show();
		$(this).children("ul").css("background-color", "#669933");
	  }, function() {
		$(this).children("ul").hide();
		$(this).children("a").css("background-color", "transparent");
	  });	 	
	  
	  $("#ifrs").parent().hover(function() { 
		$(this).children("a").css("background-color", "#007770");
		$(this).children("ul").show();
		$(this).children("ul").css("background-color", "#007770");
	  }, function() {
		$(this).children("ul").hide();
		$(this).children("a").css("background-color", "transparent");
	  });		
	  
	  $("#unique").parent().hover(function() { 
		$(this).children("a").css("background-color", "#CC6600");
		$(this).children("ul").show();
		$(this).children("ul").css("background-color", "#CC6600");
	  }, function() {
		$(this).children("ul").hide();
		$(this).children("a").css("background-color", "transparent");
	  });		
}