var screen_x = screen.width;
var screen_y = screen.height;

function loading(){
    $('#loading').ajaxStart(function(){
        $(this).fadeIn('fast');
    });
    
    $('#loading').ajaxStop(function(){
        $(this).fadeOut('fast');
    });
}
