/*********************************************************
'Filename:      pubs2.js
'Website:       Robb Report Vacation Homes
'Created By:    Michael England
'Created Date:

Modified        By              Description
----------------------------------------------------------

*********************************************************/

var publications_timer;
var publications_id = "portalnav";

function publications_mouseover() {
    clearTimeout(publications_timer);
    Effect.Appear(publications_id, { duration: .25, queue: 'end' });
    hide_selects();
}

function publications_mouseout() {
    publications_timer = setTimeout("publications_clear()", 250)
}

function publications_clearTimeout() {
    clearTimeout(publications_timer);
}

function publications_clear() {
    Effect.Fade(publications_id, { duration: .25, queue: 'start' })
    show_selects();
}

function showlogo(prop) {
    document.getElementById('logo_default').style.display = 'none';
    document.getElementById(prop).style.display = 'block';
}

function hidelogo(prop) {
    document.getElementById(prop).style.display = 'none';
    document.getElementById('logo_default').style.display = 'block';
}