$(document).ready(function(){ 
  // jQuery stuff here

  $('.hover').hover(function() {
		$(this).fadeTo(200, .8);
	}, function() {
		$(this).fadeTo(200, 1);
  });

});
