//contact shop name
$(function ()
{
    $('.contactLink').each(function ()
    {
        if ( $('title').html().match(/[^|]+$/) ) {
            this.href   += ('?shop=' + encodeURIComponent($.trim(RegExp.lastMatch)));
        }
    });
});
