function moveImage( element, xCord, yCord ){
    new Effect.Move(element, {
        x: xCord, y: yCord,
        duration:.35,
        mode: 'absolute',
        transition: Effect.Transitions.sinoidal
    });
    return false;
}

function setupLargeImages(){
    $('loading').hide();
    showImage();
    moveImage('highlights', startX, startY);
}

function showImage(){
    $('highlights').appear( { duration:.5 } );
}

function initPage(){
    if( $('loading') ){
        setupLargeImages();
    } else if( $('highlights') ){
        console.log("highlights");
        showImage.delay(1);
    }
}


Event.observe(document, 'dom:loaded', initPage);

function showJobs(element){
    window.open(element.href,'jobs','height=760,width=820');
    return false;
}
