// JavaScript Document



//this makes the drop down menu navigate
function Navigate (site) {
	if (site != "") {
		top.location=site
	} 
}


//  home page slideshow

function slideSwitch() {
    var $active = $('#slideshow IMG.active');
    var $next = $active.next();

    $active.addClass('last-active');

    $next.css({opacity: 0.0})
        .addClass('active')
        .animate({opacity: 1.0}, 1000, function() {
            $active.removeClass('active last-active');
        });
}

(function() {
    setInterval( "slideSwitch()", 5000 );
});



//  dynamic copyright year

    var today=new Date();
    var y0=today.getFullYear();