$(function(){

	$("li[class^=tipo]").filter(function(){

		$(this).bind("mouseover",function(){
			this.className=this.className+"_on";
			$(this).children("div").children("ul").show();
			$(this).children("span").show();
		})
		
		$(this).bind("mouseout",function(){
			this.className=this.className.substring(0,(this.className.length-3))
			$(this).children("div").children("ul").hide();
			$(this).children("span").hide();
		})
	})
})
