
/*new functions based on jquery*/
$(function(){

    $('.activbgd').click(function(){
        if($(this).attr("id")=='registrar'){
            window.location = '/register.php';
        }else{
            $(this).hide(); 
            xajax_joinAllLeagues();
        }
    });

$('#ChatsRoot').dialog({
					autoOpen: false,
					width: 500
	
				});	
	
			url=$("#Chats").find("a").attr("href");
		
				$("#Chats").click(function() {
					$("#ChatsRoot").load(url);  
				$('#ChatsRoot').dialog('option', 'title', 'Chats Room Liga Fantastica de Pronosticos');
		
				$('#ChatsRoot').dialog('open');
				return false;
		});


});
