$(document).ready(function(){
  // nav class
  $('#nav li a').each(function() { 
    if (this.href == document.location) {
      $(this).addClass("active");
      $(this).attr('href', '#');
    }
  }); 

  // home link
  $('#header').click(function() { document.location = '?content=home'; });
  $('#gesture').click(function() { document.location = '?content=home'; });
});