/* (c)2009 Jacopo Salvestrini - 0.1.20090202 */
$(document).ready(function(){
	$("#body-nav li a").hover(
		function(){
			$(this).animate({
				width:"358px",opacity:"1"
			}, 500);
		},
		function(){
			$(this).animate({
				width:"100%",opacity:".6"
			}, 500);
		}
	);
 });
