/*$(document).ready(
//when the dom has loaded
(function(){
	//display the hover div
	$("#menu_vertical ul li").show("fast", function() {
		//append the background div
		$(this).children("a").append("<div></div>");
		//on link hover
		$(this).children("a").hover(function(){
			
			
		},function(){
			//fade out the background
			$(this).children("div")
				.stop()
				.css({"display": "none", "opacity": "1", "height" : $(this).height()})
				.fadeOut("slow");

	});
});
}));*/
