/*(function($) {
	$.fn.hoverDelay = function() {
		return this.each(function(){
			var timeout;
			$(this)
				.hover(function(){
					clearTimeout(timeout);
					$(this).addClass('showit');
				}, function(){
					var t = $(this);
					timeout = setTimeout(function() {
						t.removeClass('showit');
					}, 50);
				});
		});
	}
});

$(function(){
	$('.hint').toggleClass('show');
	$('.hint').hoverDelay();
});*/

/*Event.observe(window, 'load', function() {
  $('.hint').onclick = function() { $('.overinfo').toggle(); }
});*/
function fToggle(element)
{
    //alert($(elementas).inspect());
    $(element).down(1).toggle();
    $(element).down(1).addClassName('showit');
} 


