(function($) {
	$(document).ready(function() {
		$('input[type="text"], select, textarea').fade(
			{ color: "#999999", backgroundColor: "#F9F8F7", bordercolor: "#999999" }, 
			{ color: "#333333", backgroundColor: "#FFFFFF", bordercolor: "#666666" }, 
			"focus", 
			"fast"
			);
			
		$("#twitter a").fade({ color: "#5FC8FD" }, { color: "#FFFFFF" }, "hover", "fast");
		$("#body_main_inside a").fade({ color: "#2075a1" }, { color: "#5FC8FD" }, "hover", "fast");
		$("#footer a").fade({ color: "#FFB266" }, { color: "#FFFFFF" }, "hover", "fast");
	});
	
	$.fn.fade = function(cssStart, cssEnd, type, speed) {
		if(speed == "") speed = "normal";
		
		$(this).css(cssStart);
		
		if(type == "focus")
			$(this)
				.focus(function() { $(this).animate(cssEnd, speed); })
				.blur(function() { $(this).animate(cssStart, speed); });
				
		else
			$(this)
				.hover(
					function() { $(this).animate(cssEnd, speed); }, 
					function() { $(this).animate(cssStart, speed); }
					);
	};
})(jQuery);