$(document).ready(function() { 	
						$("#portfolio ul li a").hover(function(){
															$(this).fadeTo("slow", .6);
													},function(){
															$(this).fadeTo("slow", 1);
													});
 });

