// JavaScript Document
function switchBckgrdOver($id, $color1, $color2){
	var div = document.getElementById($id);
	if(div.style.background = $color1){
		div.style.background = $color2;
	}
}
function switchBckgrdOut($id, $color1, $color2){
	var div = document.getElementById($id);
	if(div.style.background = $color2){
		div.style.background = $color1;
	} 
}
function fastNavOver($which){
	var img = document.getElementById('fastnav_img_link_' + $which);
	var h3 = document.getElementById('fastnav_h3_link_' + $which);
	var p = document.getElementById('fastnav_p_link_' + $which);
	img.style.border = '1px solid #fff';
	h3.style.textDecoration = 'underline';
	p.style.textDecoration = 'underline';
}
function fastNavOut($which){
	var img = document.getElementById('fastnav_img_link_' + $which);
	var h3 = document.getElementById('fastnav_h3_link_' + $which);
	var p = document.getElementById('fastnav_p_link_' + $which);
	img.style.border = '1px solid #cccc99';
	h3.style.textDecoration = 'none';
	p.style.textDecoration = 'none';
}
