$(document).ready(function(){	

	/* HOME */

	$('.opacify').hover(
		function(){
			$(this).stop().fadeTo('fast', 0.7);
		},
		function() {
			$(this).stop().fadeTo('fast', 1);
		});	


});	  




