
	$(function() {

	    //we use this to set the correct image on the main page
	  //  $("#container").addClass(selectedId);

	    //remove instructional txt from search box
	$("input#search_box").focus(function() { if( $(this).val()=='Search') $(this).val(""); }); //.blur(function(){$(this).val("Search");});
	$('input#search_box').keypress(function(e) {
	    if (e.which == 13) {
	        jQuery(this).blur();
	        jQuery('#search_go').focus().click();
	    }
	});
	    $("#waxa_tabs").show();

		$("#sub_navigation ul li.selected").not("#sub_navigation ul li ul.child li.selected").append("<span class=\"topcurve\">&nbsp;</span><span class=\"bottomcurve\">&nbsp;</span>");
	});
