jQuery(document).ready(function(){

  //Homepage tabs
  var tabs_root = 'nav-tabs-hp';
  var tabs_width = $('.'+tabs_root).width();
  $('.'+tabs_root).append($('<div>', {'class': tabs_root+'-content'}));
  $('.'+tabs_root+'-content').css('width', tabs_width+'px');
  $('.'+tabs_root+">li").bind("mouseover click", function(){
    $('.'+tabs_root+">li").removeClass('nav-tabs-hp-on');
    $('.'+tabs_root+'-content').css('width', $('.'+tabs_root).width()+'px');
    $('.'+tabs_root+'-content').html($(this).find('div:first').clone());
    $(this).addClass('nav-tabs-hp-on');
  });
  $('.'+tabs_root+">li a").bind('click', function(){
    return false;
  });
  setTimeout("$('."+tabs_root+">li:first a').mouseover();", 250); //Slight delay to ensure everythings rendered ready for it (mobile Safari)

});

