
$(document).ready(function() {
$("#leftNavColumn li").hover(function(){
	$(this).children("ul").css("display","block");
	$(this).css("z-index","100");
	//alert('hover');
	},
	function() {
	$(this).children("ul").css("display","none");
	$(this).css("background-color","");
	});
});