
function init()
{

    //http://www.hotajax.org/demo/jquery/zoomimage/zoomimage/index.html#implement
    var zoomoptions =
      {
        border: 5,
        centered: true,
        opacity: 0.7,
        hideSource: true
    };


    $('a.zooomgallery').zoomimage(zoomoptions);


}




$(document).ready(function()
{

	init();

});

