function front_colored()
{
		$(".colored").each(function(){
			if($(this).find(".background").length <= 0)
			{
				$(this).append( $("<div>").attr('class', 'background').addClass('colored_static').css({position: 'absolute',
																	top:$(this).offset().top,
																	left:$(this).offset().left,
																	zIndex:-2,
																	width:($(this).width() + parseInt($(this).css("padding-left").replace("px", "")) + parseInt($(this).css("padding-right").replace("px", ""))) ,
																	height:($(this).height() + parseInt($(this).css("padding-top").replace("px", "")) + parseInt($(this).css("padding-bottom").replace("px", ""))),
																	opacity: 0.7,
																	filter: 'alpha(opacity=70)'
																  }));
				
			}
			else
			{
				$(this).find(".background").css({top:$(this).offset().top, left:$(this).offset().left});
			}
		});	
		
		$(".colored_black").each(function(){
			if($(this).find(".background").length <= 0)
			{
				$(this).append( $("<div>").attr('class', 'background').addClass('colored_static_black').css({position: 'absolute',
																	top:$(this).offset().top,
																	left:$(this).offset().left,
																	zIndex:-1,
																	width:($(this).width() + parseInt($(this).css("padding-left").replace("px", "")) + parseInt($(this).css("padding-right").replace("px", ""))) ,
																	height:$(this).height()
																  }));
				
			}
			else
			{
				$(this).find(".background").css({top:$(this).offset().top, left:$(this).offset().left});
			}
		});	
		
		$(".menu").find("div").each(function(){
			if($(this).find(".background").length <= 0)
			{
				if($(this).hasClass("current"))
				{
					$(this).append( $("<div>").attr('class', 'background').css({position: 'absolute',
																	top:$(this).offset().top + 1,
																	left:$(this).offset().left,
																	zIndex:-1,
																	width:$(this).width(), 
																	height:'14px',
																	backgroundColor:'#000000'
																  }));
				}
				else
				{
					$(this).append( $("<div>").attr('class', 'background').addClass('colored_static').css({position: 'absolute',
																	top:$(this).offset().top + 1,
																	left:$(this).offset().left,
																	zIndex:-1,
																	width:$(this).width(), 
																	height:'14px',
																	opacity: 0.7,
																	filter: 'alpha(opacity=70)'
																  }));
				}
				if(!$(this).hasClass("current"))
				{
					$(this).mouseover(function(){
						$(this).find('.background').attr("oldbackground", $(this).find('.background').css("background-color"));
						$(this).find('.background').css({opacity: 1, "background-color": "#000000"});
						$(this).children().css({"color": "#FFFFFF"});
					});
					$(this).mouseout(function(){
						$(this).find('.background').css({opacity: 0.7, "background-color": $(this).find('.background').attr("oldbackground")});
						$(this).children().css({"color": "#000000"});
					});
				}
			}
			else
			{
				$(this).find(".background").css({top:$(this).offset().top, left:$(this).offset().left});
			}
		});	
}
