 
$(document).ready(function(){
$("#bpos1").hoverIntent(
  function () {
    $("#pos1").show("slow");
  },
  function () {
	$("#pos1").hide("slow");
	
  }
);

$("#bpos2").hoverIntent(
  function () {
    $("#pos2").show("slow");
  },
  function () {
	$("#pos2").hide("slow");
	
  }
);

$("#bpos3").hoverIntent(
  function () {
    $("#pos3").show("slow");
  },
  function () {
	$("#pos3").hide("slow");
	
  }
);

$("#bpos4").hoverIntent(
  function () {
    $("#pos4").show("slow");
  },
  function () {
	$("#pos4").hide("slow");
	
  }
);
  });
  
  $(document).ready(function(){  
    $(".fam_switch1").click(function () {
      $("#fam_news2").hide("slow");
      $("#fam_news3").hide("slow");
      $("#fam_news1").show("slow");
    });    
 
  });
  
  $(document).ready(function(){  
    $(".fam_switch2").click(function () {
      $("#fam_news1").hide("slow");
      $("#fam_news3").hide("slow");
      $("#fam_news2").show("slow");
    });    
 
  });
  
  $(document).ready(function(){  
    $(".fam_switch3").click(function () {
      $("#fam_news1").hide("slow");
      $("#fam_news2").hide("slow");
      $("#fam_news3").show("slow");
    });    
 
  });
  

  
  $(document).ready(function(){  
    $(".hidetop").click(function () {
	$("#top_1").toggle("slow");
	$("#top_2").toggle("slow");
	$("#our_choose").toggle("slow");
    });    
 
  });
