function setupApplyForJobLinks()
{
    // Find each link type drop down field
    $$('a.modal_image').each
    (
        function(item)
        {
            // Show send to friend modal
            Event.observe(item, 'click', function(e)
            {
                e.stop();
                
                var tempLink = Event.findElement(e, 'A');
                
                Lightview.show
                ({
                    href:        tempLink.href,
                    rel:         'iframe',
                    title:        'Apply for This Job',
                    caption:    'Enter your information to apply for this job online.',
                    options: 
                    {
                        autosize:    false,
                        topclose:    false,
                        width:        450,
                        height:        450
                    }
                });
                
                return false;
            });
        }
    );    
}
