$(document).ready(function(){
	$("#firstmenu4 li").mouseover(function(){
		this.style.overflow = "visible";
		this.style.zIndex = 1;
	});
	$("#firstmenu4 li").mouseout(function(){
		this.style.overflow = "hidden";
		this.style.zIndex = 0;
	});
});
