var base = "/";$(function() {
	setupMenu();
	$('.submit.thickbox').mouseup(function() {
		setTimeout(function() {
                $("#TB_title").addClass('plain');
            }, 5);
	});
	
	barkform = new Form('submit-bark-form');
	barkform.setupValidator(function(){
		$('#submit-bark-form').html('<h3>Thanks for your bark!</h3><p><a href="" onclick="tb_remove(); return false;">Close Window</a></p>');
	});	
});
/******************************/
function setupMenu() {
	$('div#menu ul li').hover(function() {
		$('ul#' + $(this).attr('id') + '-menu').show();
	}, function() {
		$('ul#' + $(this).attr('id') + '-menu').hide();
	});
	$('div#submenus ul').hover(function() { 
		$(this).show(); 
		thisid = $(this).attr('id');
		parentid = thisid.substring(0,(thisid.length-5));
		$("#"+parentid+" a").addClass('selected');
	}, function() { 
		$(this).hide(); 
		$("#"+parentid+" a").removeClass('selected');
	});
	$('div#submenus ul ul').hover(function() { $(this).show(); }, function() { $(this).show(); });	
}
