$(document).ready(function(){
  var deviceAgent = navigator.userAgent.toLowerCase();
  var agentID = deviceAgent.match(/(iphone|ipod|android|blackberry)/);

  if (agentID) {
    $('#topnav > ul').slideToggle();
    $('#topnav').append('<a id="snav">Menu</a>');
    $('#topnav #snav').click(function () {
    $('#topnav > ul').slideToggle(function() {
    $('#snav').toggleClass('wav');
      });
    });      
  }

  else {
    $('#img2').load("templates/banner.html");
    $.getScript("js/jquery.cycle.lite.js", function() {
      $('#img2').cycle();
    });    
  }
});
