$(document).ready(function(){
						   $(".project-thumbnails").fadeTo("slow", 0.3);
						   $(".project-thumbnails").hover(function(){
						   $(this).fadeTo("slow", 1.0);
						   },function(){
						   $(this).fadeTo("slow", 0.3);
						   });
						   });

$(document).ready(function(){
						   $("#text p").fadeTo("slow", 0.3);
						   $("#text p").hover(function(){
						   $(this).fadeTo("slow", 1.0);
						   },function(){
						   $(this).fadeTo("slow", 0.3);
						   });
						   });

$(document).ready(function(){
						   $("#div").fadeTo("slow", 0.3);
						   $("#div").hover(function(){
						   $(this).fadeTo("slow", 1.0);
						   },function(){
						   $(this).fadeTo("slow", 0.3);
						   });
						   });
