$(document).ready(function() {
	 $('.s-c').mouseover(function() {
        $(this).children('div.s-u').show();
      }).mouseout(function() {
        $(this).children('div.s-u').hide();
      });
    });




