Hello
To change the 'menu item' field to a text field allowing you to add the URL of your choice open up your modules mod_j51gridgallery.php (../modules/mod_j51gridgallery/mod_j51gridgallery.xml) and replace each instance of the following....
type="menuitem"
with....
type="text"
In your modules default.php (../modules/j51_gridgallery/tmpl/default.php) try replacing the following (approx. line 126)...
<a href="/<?php echo JRoute::_("index.php?Itemid={$image_url[$cur_img]}") ?>" target="<?php echo $target_url[$cur_img]; ?>" >
with...
<a href="/<?php echo $image_url[$cur_img]; ?>" target="<?php echo $target_url[$cur_img]; ?>" >
You can then add a URL rather than selecting a menu item for each image.
Ciarán