/* --- */
$(document).ready(function() {
	col="";
	if (section=="none") col = '#F55EBD';
	if (section=="archives") col = '#0AB12F';
  //$('.text-container h2, #project-list a').append("&nbsp;&nbsp;");
	$("#project-list a").fadeTo("slow", 0.7).hover(
			  function () {
				  //$(this).css('color',col);
				  //$(this).stop();
				  $(this).fadeTo(0, 1);
				  
				  
			  },
			  function () {
				  //$(this).css('color','#444');
				  $(this).stop();
				  $(this).fadeTo(0, Math.random()+.2);
				  //$(this).fadeTo(1000, .4);
			  }
			);
});


