﻿//The load event for all Raytheon 3.0 pages
$(document).ready(function () {
    setTimeout('altContent()', 2000);
});

//Scroll function for the flash player
function pageScroll(h) {
    window.scrollBy(0, h * 10); // horizontal and vertical scroll increments
    scrolldelay = setTimeout('pageScroll()', 100); // scrolls every 100 milliseconds
}

//Show alternate content for users who have flash disabled
function altContent() {
    $("#alt-content").css("display","block");
}
