$(document).ready(function(){
    
    $("#login_form").submit(function(){  
        
        $('#submit').hide();
        $('#loading').show();
        
        var str = $(this).serialize();
        
        $.ajax({  
            type: "POST",
            url: "http://www.babastudio.com/login/index/",
            data: str,  
            success: function(msg){  
                
                $("#status").ajaxComplete(function(event, request, settings){  
                    $('#submit').show();
                    $('#loading').hide();  
                    
                    if(msg == 'OK') {  
                        var login_response = 'Please wait while you are redirected...';  
                        $(this).html(login_response);
                        setTimeout('go_to_private_page()', 3000); 
                    } else {  
                        var login_response = msg;
                        $('#login_response').html(login_response);
                    }  
                    
                });  
           
            }  
           
        });  
          
        return false;
    });
});

function go_to_private_page()
{
    window.location = 'http://www.babastudio.com/';
}
