$(document).ready(function(){
						   
	$("#experience").fadeTo("slow", 0.5);
	
	$("#experience").hover(function(){
	
	$(this).fadeTo("slow", 1.5);
	},function(){
	$(this).fadeTo("slow", 0.5);
	
	});
});