jQuery.preloadImages = function(){  for(var i = 0; i<arguments.length; i++){    jQuery("<img>").attr("src", arguments[i]);  }}$(document).ready(function(){	//Quick Links Menu	$("#quickLinksButton").click(function(){		if($("#quickLinks").position().top == 0){			$("#quickLinks").animate({				top: "-104px"			});			$("#quickLinksButton").css({				"background-image": "url(../_img/quick-links.png)"			});		}else{			$("#quickLinks").animate({				top: 0			});			$("#quickLinksButton").css({				"background-image": "url(../_img/quick-links-up.png)"			});		}		return false;	});	$('#header').supersleight({shim: '_img/x.gif'});	// The following line needs an absolute URL in order for the fix to work for the blog in IE6	$('#menu ul.menu').supersleight({shim: 'http://www.tandswebdesign.com/_img/x.gif'});	$('td').supersleight({shim: 'http://www.tandswebdesign.com/_img/x.gif'});	//$('#menu ul.menu li a').ahover({"toggleEffect": "width"});	$("table tr:nth-child(even)").addClass("alt");});