$(document).ready(function(){
	$('#menu ul li a').each(function() {
		var text = $(this).html();
		$(this).html(text.replace(/^([A-Za-z0-9])/g,'<span class="larger">$1</span>'));
	});
	$('input[type=button],input[type=submit]')
		.addClass("ui-state-default ui-corner-all")
		.mouseover(function(){ $(this).addClass("ui-state-hover"); })
		.mouseout(function(){ $(this).removeClass("ui-state-hover"); })
	;
	$('button')
		.addClass("ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only")
		.mouseover(function(){ $(this).addClass("ui-state-hover"); })
		.mouseout(function(){ $(this).removeClass("ui-state-hover"); })
	;
	$('button span')
		.addClass("ui-button-text")
	;
})
function slideUpDown( sel, hideSel ) {
	if ( $(sel).is(":visible") ) {
		$(sel).slideUp(500);
	} else {
		$(hideSel).hide();
		$(sel).slideDown(500);
	}
}

