// JavaScript Document

$(document).ready(function(){
	
	//image rollover for the footer mailing list
	$("img.mailinglist").hover(function () {
  		$(this).attr({src : "images/join-our-mailing-list-ro.gif"});
  	}, function () {
  		$(this).attr({src : "images/join-our-mailing-list.gif"});  
    });
	
	//image rollover for the donate image
	$("img#donate").hover(function () {
  		$(this).attr({src : "images/donate-ro.gif"});
  	}, function () {
  		$(this).attr({src : "images/donate.gif"});  
    });
	
	

});