function popupImageGallery(id) {
    window.open(stHttpAddress + "/gallery.php?growerCode=" + id.split('_')[0] + "&code=" + id.split('_')[1], 'imageGallery', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=900,height=650,left=50,top=25');
}
function initImageGallery() {
    $('.plantList .photo').replaceWith(function() { return '<a id="' + $(this).attr('id') + '" class="photo" href="javascript:void(0);">view photos</a>'; });
    $('.plantList .photo').click(function() {popupImageGallery($(this).attr('id')); });
}
$(document).ready(function() {
	initImageGallery();
    });

