$(document).ready(function() {
  $('.slide').hide();
  $('#about').show();

//$('.ltabs').tabs()
  $(".fooey-box").html("<a>Hello squirrel!</a>");
  $(".fooey-box").hover(function() {
    $.get('test', function(data) {
      $('.fooey-box').html(data);
    });
  });

  $(function() {
		$( "#sortable" ).sortable();
		$( "#sortable" ).disableSelection();
	});
 
  $( "#draggable" ).draggable({
    connectToSortable: "#sortable",
//    helper: "clone",
//    revert: "invalid",
    axis: "y"
  });

  $('.nav>li>a').hover(function() {
    var linko = $(this).attr('href');
    if(!$(this).parent().hasClass('active')) {
      $('.nav').children().removeClass('active');
      $(this).parent().addClass('active');
      $('.slide').hide();
      $(linko).fadeIn("slow");
    }
  }, function() {
  });
});

