$(document).ready(function () {
var language = $('meta[name=language]').attr("content");
if (language === 'es-AR') {
$('body').prepend('
');
} else {
$('body').prepend('');
}
});
//$(document).unbind(function() {
// $('#ajaxBusy').show();
//})
$(document).ajaxStart(function() {
$('#ajaxBusy').show();
//alert('start');
}).ajaxStop(function() {
$('#ajaxBusy').hide();
//alert('stop');
});