$(document).ready(function() {
	
	$('.sampleBox').hide();
	
	$('.sampleTitle').toggle(function(){
		$(this).next('.sampleBox').slideDown();
		return false;
	}, function(){
		$(this).next('.sampleBox').slideUp();
		return false;
	});
	
	$('.menu').menu({
		showDelay: 200,
		hoverOpenDelay: 200,
		copyClassAttr: true
	});
});


