$(function() {

    // Dialog			
    $('#dialog').dialog({
        autoOpen: false,
        width: 665
    });

    // Dialog Link
    $('#dialog_link').click(function() {
        $('#dialog').dialog('open');
        return false;
    });

    //hover states on the static widgets
    $('#dialog_link, ul#icons li').hover(
					function() { $(this).addClass('ui-state-hover'); },
					function() { $(this).removeClass('ui-state-hover'); }
				);

});

function changeImage(imgID, imgSRC) {
    var thisImage = document.getElementById(imgID);
    thisImage.src = imgSRC;
    return true;
}

function pop(fileName) {
    window.open('pop.html?fileName=' + fileName, 'reconVideo', 'width=522,height=335,resizable=no,scrollbars=no,toolbar=no,location=no,directories=no,status=no,menubar=no,copyhistory=no');
}