
$(document).ready(adjustBackground);
$(document).ready(startCycle);
$(document).ready(createRadioLink);
$(window).resize(adjustBackground);

function adjustBackground() {
    left = $('#container').offset().left;
    if (left < 1024/2) {
        diff = ((1024/2)-left) + 50;
        $('#outer_container').css('background-position', diff*-1 + 'px 0px');
		$('#outer_container').css('visibility','visible');
    }
}

function startCycle() {
    $('.cycle').cycle({
        fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});

}

function createRadioLink() {
    radioLink = $('#xma7').get(0).href;
    $('#xma7').get(0).href = 'javascript:void(0);';
    $('#xma7').get(0).target = '';
    $('#xma7').bind('click',function () {
        try {
            window.parent.sound.location = 'empty.html';
            $('#radioOff').hide();
            $('#radioOn').show();
            //document.getElementById('radioOn').style.display='inline';
        } catch(e) {}
        
        popUp = window.open(radioLink, "popUp", "top=0,left=" + (screen.width/2 - 306) +",width=612,height=469,resizable=0,toolbar=0,scrollbars=0,location=0,status=0,menubar=0");
		popUp.focus();
    });
}