$(document).ready(function(){$(function(){
  $("#tabs").tabs();
  $("#tabs").tabs({
  //event: "mouseover",
    selected: 0
  });
  $("#acc").accordion({autoHeight: false});
  $("#acc1").accordion({autoHeight: false});
    $("h3", "#acc1").click(function(e) {
        var contentDiv = $(this).next("div");
        contentDiv.load($(this).find("a").attr("href"));      
    });
  $("#acc2").accordion({autoHeight: false});
    $("h3", "#acc2").click(function(e) {
        var contentDiv = $(this).next("div");
        contentDiv.load($(this).find("a").attr("href"));      
    });

});
});
