$(function(){
    $('a.submit, a.form-submit, a#submit').live('click',function(){
        $(this).parents('form').submit();
        return false;
    }).find('span').each(function(){
        txt = $(this).text();
        if(window.location.protocol=='http:') {
            $(this).html("<em style=\"background-image: url('http://www.vintageescapes.com/txt/14.333."+txt.replace(' ','_')+".png')\">"+txt+"</em>");
        } else {
            $(this).html("<em style=\"background-image: url('https://www.vintageescapes.com/static/images/txt/14.333."+txt.replace(' ','_')+".png')\">"+txt+"</em>");
        }
    });

});


