$(document).ready(function() {
	PEPS.rollover.init();
	
	$("#firma img").css("opacity", "0.3");
	
	$("#firma img").hover(
		function () {
			$(this).fadeTo("fast", 0.9);
		}, 
		function () {
			$(this).fadeTo("fast", 0.3);
		}
	);
});
