//accordion
$(document).ready(function(){	
	$('.acc_menu').hover(function() {					   
		$(this).next().slideToggle();
	}).next().hide();
});
