$(document).ready(function(){
	$('.rel').hover(function() { 
		$(this).addClass('plus');
	},
	function() { 
		$(this).removeClass('plus');
	});
});
