$(document).ready(function() {
	$('#sidebar .side-menu .menu > li > a').click(function () {	
		if ($(this).next('.sub-menu').length > 0) {
			$(this).next('.sub-menu').slideToggle();
			$(this).toggleClass('hide');
			return false;
		} 
	});

});
