 /* img opac jquery rollover */
$(document).ready(function() {
	$('img.jquery_opac').each(function() {
		$(this).hover(function() {
			$(this).stop().animate({ opacity: 1.0 }, 300);
		},
	   function() {
		   $(this).stop().animate({ opacity: 0.7 }, 300);
	   });
	});
});
