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

$(document).ready(function() {

      $('.box').hover(
        
            function() {
                  // show div
                  $(this).find('.floatLinks').fadeIn('medium');
            },
            function() {
                  // hide div
				  $(this).find('.floatLinks').fadeOut('medium');
            }
      );

});


