$(document).ready(function()
{	
	isonline();
	checkEmisora();
	setTimeout('appearDJs()',1000)
}
);
function appearDJs()
{
	setTimeout("appearDJ('#evaDJ','evadj.gif')",1000)
	setTimeout("appearDJ('#tonyDJ','billydj.gif')",1500)
	setTimeout("appearDJ('#cowboyDJ','joedj.jpg')",2000)
}

function appearDJ(where,imagen)
{
	$(function () {
        var img = new Image();
        $(img).load(function () {
            //$(this).css('display', 'none'); // .hide() doesn't work in Safari when the element isn't on the DOM already
            $(this).hide();
            $(where).removeClass('loading').append(this);
            $(this).fadeIn();
        }).error(function () {
        }).attr('src', imagen);
    });
}