			 $(function(){
						$(".draggable").click(function(){
							$(".draggable").css({
								"zIndex": "0"
							});
							$(this).css({
								"zIndex": "0"
							});
						});
						$(".draggable").draggable({
							zIndex: "0"
						});
					});
			$(function(){
				function flyin(event)
					{
						 $(".k").css("top","1000px");
						 $(".a").css("top","-1000px");
						 $(".r1").css("top","1000px");
						 $(".r2").css("top","-1000px");
						 $(".u").css("top","1000px");
						 $(".n").css("top","-1000px");
						 $(".k").animate({"top":0},500, "jswing", flyin2);
					}

				function flyin2(event)
					{
						$(".a").animate({"top":0},500, "jswing", flyin3);
					}

				function flyin3(event)
					{
						$(".r1").animate({"top":0},500, "jswing", flyin4);
					}

				function flyin4(event)
					{
						$(".r2").animate({"top":0},500, "jswing", flyin5);
					}

				function flyin5(event)
					{
						$(".u").animate({"top":0},500, "jswing", flyin6);
					}

				function flyin6(event)
					{
						$(".n").animate({"top":0},500, "jswing", null);
					}
				flyin();
			});
jQuery.fn.dwFadingLinks = function(settings) {
	return this.each(function() {
		var original = $(this).css('color');
		$(this).mouseover(function() { $(this).animate({ color: settings.color },settings.duration); });
		$(this).mouseout(function() { $(this).animate({ color: original },settings.duration); });
	});
};

/* usage */
$(document).ready(function() {
	$('a,.letters h2').dwFadingLinks({
		color: '#69b3ff',
		duration: 400
	});
});
$("#footer").toggle(function() {
	$(this).animate({ backgroundColor: "black" }, 1000);
},function() {
	$(this).animate({ backgroundColor: "#68BFEF" }, 500);
});
