// JavaScript Document

/* $(document).ready(function(){
		$(".stylefade, .stylefade1, .stylefade2, .stylefade3, .stylefade4, .stylefade5, .stylefade6").hide();		
		$(".styletriggerfade").css({fontWeight:"bold"});
		$(".stylefade").toggle(500);
		$(".stylefade1").fadeIn(750);
		$(".stylefade2").fadeIn(1000);
		$(".stylefade3").fadeIn(1250);
		$(".stylefade4").fadeIn(1500);
		$(".stylefade5").fadeIn(1750);
		$(".stylefade6").fadeIn(2500);
		$(".tradegothic").hide();
		$(".tradegothic").show();
		
}); */


function navshowhide(id, action) {
       if (action=="show") {
            document.getElementById(id).style.display = "block";
       } else {
            document.getElementById(id).style.display = "none";
       }
}

function greenrollover(id, action) {
       if (action=="rollover") {
            document.getElementById(id).style.backgroundImage = "url(site_images/btn_green2.jpg)";
			document.getElementById("showcase").style.backgroundImage = "url(site_images/slideshow_files/donate.jpg)";
			document.getElementById("showcase").src = "blank.html";
			document.getElementById(id).style.cursor = "pointer";
						
       } else {
            document.getElementById(id).style.backgroundImage = "url(site_images/btn_green.jpg)";
			document.getElementById("showcase").src = "slideshow.html";
       }
}
function redrollover(id, action) {
       if (action=="rollover") {
            document.getElementById(id).style.backgroundImage = "url(site_images/btn_red2.jpg)";
			document.getElementById("showcase").style.backgroundImage = "url(site_images/slideshow_files/lookingforjob.jpg)";
			document.getElementById("showcase").src = "blank.html";
       } else {
            document.getElementById(id).style.backgroundImage = "url(site_images/btn_red.jpg)";
			document.getElementById("showcase").src = "slideshow.html";
       }
}
function bluerollover(id, action) {
       if (action=="rollover") {
            document.getElementById(id).style.backgroundImage = "url(site_images/btn_blue2.jpg)";
			document.getElementById("showcase").style.backgroundImage = "url(site_images/slideshow_files/worker.jpg)";
			document.getElementById("showcase").src = "blank.html";
       } else {
            document.getElementById(id).style.backgroundImage = "url(site_images/btn_blue.jpg)";
			document.getElementById("showcase").src = "slideshow.html";
       }
}
function redrollover2(id, action) {
       if (action=="rollover") {
            document.getElementById(id).style.backgroundImage = "url(site_images/btn_red2.jpg)";
			document.getElementById("showcase").style.backgroundImage = "url(site_images/slideshow_files/truck.jpg)";
			document.getElementById("showcase").src = "blank.html";
       } else {
            document.getElementById(id).style.backgroundImage = "url(site_images/btn_red.jpg)";
			document.getElementById("showcase").src = "slideshow.html";
       }
}
function yellowrollover(id, action) {
       if (action=="rollover") {
            document.getElementById(id).style.backgroundImage = "url(site_images/btn_yellow2.jpg)";
			document.getElementById("showcase").style.backgroundImage = "url(site_images/slideshow_files/story.jpg)";
			document.getElementById("showcase").src = "blank.html";
       } else {
            document.getElementById(id).style.backgroundImage = "url(site_images/btn_yellow.jpg)";
			document.getElementById("showcase").src = "slideshow.html";
       }
}
