var cargado;
$(document).ready(function(){
    //TABS
	$(".tab_content").hide();  
	$("ul.tabs li:first-child").addClass("active").show();  
	$(".tab_content:first-child").show();  
	
	$("ul.tabs li").click(function()  
	{  
	    var parentID = $(this).parent().parent().attr('id');
		$("#"+parentID).find("ul.tabs li").removeClass("active");  
		$(this).addClass("active");  
		$("#"+parentID).find(".tab_content").hide();
		
		var activeTab = $(this).find("a").attr("href");  
		$("#"+parentID).find(activeTab).fadeIn('slow',function(){
	        $("#"+parentID).find(activeTab).css('filter','');
	        if(activeTab=="#tab_mapa" && cargado!=1)
	        {
	            cargarMapaGoogle();
	            cargado=1;
	        }
        });
		return false;
	});
});
