module JQueryCheats class HoverImage #class used to do a quick Hover image attr_accessor :image_tag class << self def mouseoverimage(initimage,hoverimage) @image_tag ="" @image_tag = "\"image\"" return @image_tag.html_safe end def initialize() end end#end self end end