/**
 * @author Lollo
 */
$(document).ready(function(){	
		minOpa = 0.4;
		maxOpa = 1;	
    	$('.goto').mouseenter(
      	function(){
		$(this).animate({opacity: maxOpa}, { queue:false, duration:200});
      	}
    	);
		$('.goto').mouseout(
      	function(){
		$(this).animate({opacity: minOpa}, { queue:false, duration:200});
      	}
    	);
		});