//imageMouseover.js
if (document.images) 
{

	give_off=new Image;give_off.src='../images/giveherebutton_off.gif';
	give_on=new Image;give_on.src='../images/giveherebutton_on.gif';


}
function imageSwap(location,imageName){
if(document.images)
document.images[location].src=eval(imageName+'.src');
}
