 $(document).ready(function() {
			$("#homebase").css('zIndex', 0);
			$(".thez").css('zIndex', 0);
 $("#homebase").hover(function(){
		$("#homebase").animate({ height: "140", top: "-110" }, 400);
		$("#homebase").css('zIndex', 8888);
		$(".thez").css('zIndex', 7777);

		},
 
 function(){
		$("#homebase").animate({ height: "45", top: "-15" }, 50);
		$("#homebase").css('zIndex', 0);
		$(".thez").css('zIndex', 0);
		});
 
});