$(window).load(function() {
	init();
  $("abbr.timeago").timeago();
});

init = function() {
	initSearchBox();
}

initSearchBox = function() {
	$("#q").focus(function() {
		if ($(this).val() == "search terms") $(this).val("");
		$(this).css('color', '#454545');
	});
	$("#q").blur(function() {
		if ($(this).val() == "") $(this).val("search terms");
		$(this).css('color', '#A1A1A1');
	});
}