$(document).ready(function() {
$(".footerLinks img").hover(
function()
{
this.src = this.src.replace("1","2");
},
function()
{
this.src = this.src.replace("2","1");
}
)
});


$(document).ready(function() {
$(".topheader img").hover(
function()
{
this.src = this.src.replace("_s","_over");
},
function()
{
this.src = this.src.replace("_over","_s");
}
)
});

$(document).ready(function() {
$(".featured img").hover(
function()
{
this.src = this.src.replace("_s","_over");
},
function()
{
this.src = this.src.replace("_over","_s");
}
)
});


$(document).ready(function() {
$("#go").hover(
            function(){ // Change the input image's source when we "roll on"
                $(this).attr({ src : './images/go_button_over.png'});
            },
            function(){ // Change the input image's source back to the default on "roll off"
                $(this).attr({ src : './images/go_button_s.png'});             }
        );
    });

	$(document).ready(function() {
	$("#go2").hover(
	            function(){ // Change the input image's source when we "roll on"
	                $(this).attr({ src : './images/go_button_over.png'});
	            },
	            function(){ // Change the input image's source back to the default on "roll off"
	                $(this).attr({ src : './images/go_button_s.png'});             }
	        );
	    });

$(document).ready(function() {
$(".feature td").hover(
function()
{
	$(".features").show();
},
function()
{
	$(".features").hide();
}
)
});

