jQuery(document).ready(function($) {
 	$(".module_projects_menu").each(function(index){
	 	$(this).removeClass('module_projects_menu').attr('id','projects_menu');
	 	$('li:not(.active)',this).hover(
	 		function(){
		 		$(this).css('background-color','#005883');
		 	},
		 	function(){
			 	$(this).css('background-color','#669900');
	 		}
	 	);
	});
	
	if(getUrlParameters()['id']==27)
	{
		$("#right").hide();
	}
	
	var menuLength = $("#topmenu ul").children().length;
	if(menuLength>7) 
	{
		var horPadding = 40;
		while(menuLength>7)
		{
			horPadding -= 9;
			menuLength -= 1;
		}
		$("#topmenu ul li").css('padding','0 ' + horPadding + 'px');
	}
});

function getUrlParameters() {
var map = {};
var parts = window.location.href.replace(/[?&]+([^=&]+)=([^&]*)/gi, function(m,key,value) {
map[key] = value;
});
return map;
}
