
$(document).ready(function() {
 $(".gns li:nth-child(5)").attr('id', 'comp');
 $(".gns li:nth-child(4)").attr('id', 'fam');
 $(".gns li:nth-child(3)").attr('id', 'fruit');
 $(".gns li:nth-child(2)").attr('id', 'blue');
//$('#puzzle li#boy a').addClass('active');
    $("#puzzle li a").hover(
 function() {
 //alert("hover state");
  // $('#puzzle li#boy a').removeClass('active');
   $(this).parent().addClass('show-next');
   $(this).addClass('show-span');
 },
  function() {
   //alert("hover off state");
    $(this).parent().removeClass('show-next');
    $(this).removeClass('show-span');

  }

);
   
    

    


    $("#header .gns li").hover(
 function() {
     $(this).addClass('display');
 },
  function() {
      $(this).removeClass('display');

  });





});



