I am trying to enlarge the images when mouseover and reduce the size back to normal after mouseout. I have the following:
$(\'#image img\').live(\"mouseover\
I'd first try CSS for this:
#image img { width: 50%; height: 50%; } #image img:hover { width: 100%; height: 100%; }