/* Template Housekeeping (requires jQuery) */

$(document).ready(function()
{
	/* Fixes borders on tabs */

	$(".tabs ul li:first-child").wrapInner("<span></span>");
	$(".tabs ul li:first-child").addClass("first");
	$(".tabs ul li:last-child").addClass("last");

	/* Adjust title padding if there isn't a search form */

	if (($("#title h2").length > 0) && ($("#search-form").length == 0))
		$("#title").css("padding-top","33px");
		
	/* Dropdown menus */
	
	$(".tabs li").mouseover(function() {
		$("ul", this).css("top", $(this).height() + "px");
		$(this).addClass("hover");
	}).mouseout(function() {
		$(this).removeClass("hover");
	});
});