$(function() {
    $('.optionGallery').click(function(){
        var thisGallery = $(this).attr('value');
        var thisLink;

        thisLink = "/gallery/" + thisGallery + "/";

        $('#galleryLink').attr('href', thisLink);
    });
});