$(document).ready(function(){
	
	$('.hbox_bottom').hover(function(){
		$(this).children('.hbox_bubble').show();
	}, function () {
		$(this).children('.hbox_bubble').hide();
	});

	$('#nav .slide-handler').hover(function(){
		$(this).addClass('hover');
	}, function () {
		$(this).removeClass('hover');
	});
	  
	$('#nav .slide-handler').click(function(){
		if ($(this).hasClass('open') === true) {
			$(this).removeClass('open');
			$(this).next().slideUp();
		} else {
			$('.slide-object').slideUp().prev().removeClass('open');
			$(this).addClass('open').next().slideDown();
		}
	});

});
