$(document).ready(function(){
	//-------------------------------------
 	$("#ico1").hover(
          function() {
              $("#icoInfo1").show("slow");
          },
          function() {
               $("#icoInfo1").hide("fast");
          }
        );
	//-------------------------------------
 	$("#ico2").hover(
          function() {
              $("#icoInfo2").show("slow");
          },
          function() {
               $("#icoInfo2").hide("fast");
          }
        );
	//-------------------------------------
 	$("#ico3").hover(
          function() {
              $("#icoInfo3").show("slow");
          },
          function() {
               $("#icoInfo3").hide("fast");
          }
        );
	//-------------------------------------
 	$("#ico4").hover(
          function() {
              $("#icoInfo4").show("slow");
          },
          function() {
               $("#icoInfo4").hide("fast");
          }
        );
});
