jQuery('#map div.contener').mouseover(function() {
	if(jQuery(this).children('div.text').children('span.middle').children('span').hasClass('bus'))
	{
		jQuery(this).children('div.text').children('span.middle').children('span.default').hide();
		jQuery(this).children('div.text').children('span.middle').children('span.bus').show();
	}
	else
	{
		jQuery(this).children('div.text').show();
		jQuery(this).parent().css('z-index','1');
	}
}).mouseout(function() {
	if(jQuery(this).children('div.text').children('span.middle').children('span').hasClass('bus'))
	{
		jQuery(this).children('div.text').children('span.middle').children('span.default').show();
		jQuery(this).children('div.text').children('span.middle').children('span.bus').hide();
	}
	else
	{
		jQuery(this).children('div.text').hide();
		jQuery(this).parent().css('z-index','0');
	}
});
