// JavaScript Document

$(document).ready(function(){

$("a:not(#cat_print_go a, .cat_header_main a, #homePageBanner, #homePageBannerLink, #map td a, #homePageBannerImage, #hover)").hover(function(){
	$(this).fadeTo("fast", 0.5);},
	function() {
	$(this).fadeTo("fast", 1.0); 
});

$(".jot2,.jot3,.jot6").hover(function(){
	$(this).css({'textDecoration' : 'underline'});},
	function() {
	$(this).css({'textDecoration' : 'none'}); 
});

});
