// JavaScript Document

// image rollover effect - primarily used on the "subscribe now" buttons
function roll(img_name, img_src)
   {
   document[img_name].src = img_src;
   }



