//project info panes(function($){	$.fn.projects = function()	{		//loop through list items		return this.each(function(index)		{					//work with thumbnail link			link = $(this).find("a");			//grab content from alt tags and links to use elsewhere			var title = link.attr("rel");			var desc = link.find("img").attr("alt");			//bind to hover			link.hover(				function()				{					//create new div next to thumbnails contining content					$("#p").html("<div><span>" + title + "</span>" + desc +"</div>")				},				function () 				{					$("#p").html("");				}			);		});	};	$.fn.archive = function()	{		archive = $(this);		archive.find("ul li.archive").hide();		archive.find("#hideOlder").hide();		archive.find("#showOlder").click(function()		{			$(this).hide();			archive.find("ul li.archive").fadeIn(function(){				archive.find("#hideOlder").fadeIn();			});		});		$("#home #hideOlder").click(function()		{			$(this).fadeOut();			archive.find("ul li.archive").fadeOut(function(){				archive.find("#showOlder").fadeIn();			});		});	};})(jQuery);$(document).ready(function(){	$(function()	{		$("#home ul li").projects();		$("#home").archive();		$("#quotes").cycle(		{		    fx:     'scrollUp', 		    random:  1,		    speed:  700,		    timeout:  16000,		    pause:  1		});	});});
