$(document).ready(function(){


  	$(".footer-thumb").hover(      function () {        $( this ).addClass('footer-thumb-hover');
      },       function () {
        $( this ).removeClass('footer-thumb-hover');
       });


  	$(".grays").hover(      function () {        $(this).css('background-position','top left');
      },       function () {
        $(this).css('background-position','bottom left');
      });

	$(".slide").each(function (i) {
        var w = $(this).find(".text").outerWidth();
        var h = $(this).find(".text").outerHeight();
		$(this).find(".box").css({'height': h+'px','width':w+'px'});
      });



});
