$(document).ready(function() {
	$('.boxMod').hover(function() {
		$(this).find('.rollOver').fadeIn(200);
	}, function() {
		$(this).find('.rollOver').fadeOut(200);
	})
})

