// JavaScript Document

//swap the form submission button[s] to over on mouseover 

jQuery().ready(function(){

	$('form input[@type=image]').mouseover(function(){

        if( $(this).attr('src').indexOf('-on.gif') <= 0 ) 
        { 
            var NewSubmit = $(this).attr('src').replace('-off.gif','-on.gif'); 
            $(this).attr('src',NewSubmit); 
        } 
    });

    $('form input[@type=image]').mouseout(function(){ 
        if( $(this).attr('src').indexOf('-off.gif') <= 0 ) 
        { 
            var NewSubmit = $(this).attr('src').replace('-on.gif','-off.gif'); 
            $(this).attr('src',NewSubmit); 
        } 
    });

});