/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


$(document).ready(function(){
   //$("a.profil").hide();
   $("div#profiles").hide();
   $("div#profiles").hover(
    function () {
        $(this).show();
      },
      function () {
       $(this).hide();
      }
    );
    $("a.profile").hover(
    function () {
            $(this).parent().next("div#profiles").show();
      },
      function () {
          $(this).parent().next("div#profiles").hide();
          
      }
    );


   
});



