$(document).ready(function(){

	$(".preload").preloadify({ delay:100, mode:"sequence" });

	$("a.switch-thumb").toggle(function(){
		$(this).addClass("swap");
		$("ul.display").fadeOut("fast", function(){
			$(this).fadeIn("fast").addClass("thumb-view");
		});
	}, function(){
		$(this).removeClass("swap");
		$("ul.display").fadeOut("fast", function(){
			$(this).fadeIn("fast").removeClass("thumb-view");
		});
	});
});
