$(document).ready(function() {
	$("input, textarea", "#contactForm").focus(function() {
		$(this).css({color: "#fff", backgroundPosition: "0 bottom"});
	}).blur(function() {
		$(this).css({color: "#8b8b8b", backgroundPosition: "0 0"});
	});

	$("button", "#contactForm").mouseover(function() {
		$(this).css({backgroundPosition: "0 bottom"});
	}).mouseout(function() {
		$(this).css({backgroundPosition: "0 0"});
	});

	if ($("#twitter_update_list").length) {
		$.getScript("http://twitter.com/javascripts/blogger.js");
		$.getScript("http://twitter.com/statuses/user_timeline/dcuthbert.json?callback=twitterCallback2&count=5", function() {
			$("#loader").toggle();
			$("#twitter_update_list").toggle();
		});
	}
});