$(document).ready(function() {
	$("#tabsContainer > ul").tabs();

	$("#twitter").getTwitter({
		userName: "chimp",
		numTweets: 1,
		loaderText: "Loading...",
		slideIn: false,
		showHeading: false,
		headingText: "Latest Tweets",
		showProfileLink: false
	});

	$("form#commentform input, form#commentform textarea").focus(function() {
		$(this).addClass("formHover");
	}).blur(function() {
		$(this).removeClass("formHover");
	});

	$("button").hover(function() {
		$(this).css("background-position", "0 bottom");
	}, function() {
		$(this).css("background-position", "0 top");
	});

	$("div#searchbox input").focus(function() {
		$(this).addClass("searchInputHover");
	}).blur(function() {
		$(this).removeClass("searchInputHover");
	});
});