//<![CDATA[    
	// when page has loaded
	$(window).load(function(){
		var imgWidth = $(".photo img").attr("width"); 	
		$("#title").css("width", imgWidth);
	});
	
	
	// When the page is ready
	$(document).ready(function(){    
	    $("#archivesLink").click(function(event){       
	 		$("#whenWhereWhat").toggle("slow");			
	   	}); 
		$(".commentsLink a").click(function(event){  
			$("#commentSection").show();
			$.scrollTo("#commentSection", 1500);
			event.preventDefault();
	   	}); 
		
   	});                         


 //]]>