$(document).ready(function(){
    if($("meta[name='MobileOptimized']").length==0){
        loadSN();
    }
    //
});

$(document).bind("mobileinit", function(){
   $('div.page').live('pageshow',function(event, ui){
       loadSN();
   });
});
function loadSN(){
   if($(".socialNetwork a").length>0){
   $(".socialNetwork a").each(function(){
       var href__x = $(this).attr("href");
       //console.log(href__x);
       //console.log(document.title);
       //console.log(document.URL);
       href__x = href__x.replace('_TITLE_',document.title);
       href__x = href__x.replace('_URL_',document.URL);
       
       $(this).attr("href",href__x);
    });
   }
}

