	$(document).ready(function(){
		$('a').hoverIntent({
	sensitivity: 100,
	interval: 10,
	over: over,
	timeout: 10,
	out: out
	});
	}); // close document.ready
	function over(){ 
		$(this).animate({"opacity":.7},200);
		}
		
	function out(){
		$(this).animate({"opacity":1},400);
		}

