$(function(){

	/*
	
	$menuSpeed = 50;
	$('#menu-buttons .menu-item .bol').show();
	$('#menu-buttons .menu-item .bol_ro').hide();
	
	$('#menu-buttons .menu-item .bol').live('mouseenter', function() {
		$ro = $(this).parent().find('.bol_ro');
		$(this).hide();
		$($ro).show();
	});
	
	$('#menu-buttons .menu-item .bol_ro').live('mouseleave', function() {
		$this = $(this).parent().find('.bol');
		$($this).show();
		$(this).hide();
	});
	
	*/
	
	$(".menu-item").hover(function() {
		$(this).addClass('selected');
	}, function(){
		$(this).removeClass('selected');
	});
	
});
