$(document).ready(function(){
	$('.rollover').hover(function() {
		$(this).clearQueue();
		$(this).stop();
		
		$(this).animate({
			opacity:0.2
		}, 400);
		
	}, function() {
		$(this).clearQueue();
		$(this).stop();
		
		$(this).animate({
			opacity:1.0
		}, 400);
		
	});
});
