/*
 * Jay Darnell: 01/13/2010
 */

$(document).ready(function() {
	var $searchInput = $('input#s');
	var $searchLabel = $('label.screen-reader-text');
	var $tweet = $('p#tweet');
	
	$tweet.html("Live Twitter feed coming soon!");
	
	if ($searchInput.val()) {
		$searchLabel.hide();
	}
	
	$searchInput
	.focus(function() {
		$searchLabel.hide();
	})
	.blur(function() {
		$searchLabel.show();
	});
	
	$searchLabel.click(function() {
		$searchInput.trigger('focus');
	});
});