$(document).ready(function() {
	// activate the tabs section
	$("ul.css-tabs").tabs("div.css-panes > div");

	// update the google search box
	$('#head input[type=text]').focus(function() {
		$(this).val("");
	});
	$('#head input[type=text]').blur(function() {
		$(this).val("Search this site");
	});
	
	// stripe the tables
	$(".listing tr").mouseover(function(){$(this).addClass("over");}).mouseout(function(){$(this).removeClass("over");});
	$(".listing tr:odd").addClass("odd");
	$(".listing tr:even").addClass("even");
});
