$(document).ready(function(){

	$('.rollover').hover(
		function() {
			$(this).addClass('hover').animate({ opacity: 'show' }, 'fast');
		},
		function() {
			$(this).removeClass('hover');
		}
	);
});