// JavaScript Document

$(document).ready(function(){

$("#footyTipping img").hover( function() {

        this.src = this.src.replace("norm","over"); },

        function() {

               this.src = this.src.replace("over","norm");

        });

$("a:not(#cat_print_go a, .cat_header_main a, #homePageBanner, #homePageBannerLink, #map td a, #homePageBannerImage, #hover, #footyTipping)").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'}); 
});

});





