$(document).ready(function(){ 
  if (readCookie('fullversion') != 1) {
  var deviceAgent = navigator.userAgent.toLowerCase(); 
  var agentID = deviceAgent.match(/(iphone|ipod|android|blackberry)/); 
  if (agentID) { 

    $('body').addClass('js-enabled');
    $('#topnav').appendTo($('#header'));
    $('#index #topnav').prepend('<div id="touch-menu"><a href="Index.html">HOME</a><a href="lawyer-attorney-1345047.html">CONTACT</a><a id="menu">MORE+</a></div>'); 
    $('.l2 #topnav').prepend('<div id="touch-menu"><a href="Index.html">HOME</a><a href="#contactform">CONTACT</a><a id="menu">MORE+</a></div>'); 
    $('#topnav #menu').click(function () { 
      $('#topnav > ul').toggle(); 
    });

    $('#index .bodytext > .description > *').slice(2).toggle();
    $('#index .bodytext > .description').append('<a id="read-more">Read More&hellip;</a>');
    $('#read-more').click(function() {
      $('.bodytext > .description > *').css('display','block');
      $('#read-more').toggle();
    });        

    $('#rss_feed h4 a').text('Visit Our Blog '); 

    $('body').prepend('<div id="top-number"><a>Tap here to call us</a><ul><li><a href="tel:(973) 538-4700">Parsippany Office - (973) 538-4700</a></li><li><a href="tel:(732) 279-3863">Toms River Office - (732) 279-3863</a></li></ul></div>');
    $('#top-number > a').click(function() {
      $('#top-number ul').toggle();
    });
    $('#footer .credits a').text('Powered by Justia.com'); 
    $('#attorneys #alphabhets a:last-child').text('Show All'); 

  };
  }; 
});
