$('html').addClass('js');

$(document).ready(function(){
	// change content box to include extra html for paper style
	$("#content").addClass("fancy").wrap("<div id='content_wrap'><div id='content_wrap2'><div id='content_wrap3'></div></div></div>");
	
	// change side box to include extra html for paper style
	$("#side").addClass("fancy").append("<div id='side_extra' class='png_bg'></div>").wrap("<div id='side_wrap'><div id='side_wrap2'></div></div>").parent().after("<div id='side_bottom' class='png_bg'></div>");
	
	// remove "search" from the search field on focus
	$("#q").one("focus", function() {$(this).removeAttr("value");});

	// add zebra striping to tables
	$("table tr").mouseover(function() {$(this).addClass("over");}).mouseout(function() {$(this).removeClass("over");});
	$("table tr:even").addClass("alt");
});