 $(document).ready(function(){
	 
	 $("ul#bookgallery a").click(function() 
		{
		 	var title = $(this).attr("title");
			
			$("#placeholder").fadeTo("slow", 0, function()
				{
				
					$('img#placeholder').attr(
						{
						src:"http://208.75.222.217/tastemakers/designLa/images/"+title+".jpg"
						}
					);
					$('#placeholder').fadeTo("slow", 1.0);
				}
			);
		}
	);

});