(function($){
	$(document).ready(function() {        
		$('div.toggle').click(function() {
			var childList = $(this).next();
			var parentLi = $(this).parent();
			if($(childList).is(':visible')) {
				$(this).css('background-position', '-14px 0');
				$(parentLi).css('background', 'none');
				$(childList).slideUp('fast');
			} else {
				$(this).css('background-position', '0 0');
				$(parentLi).css('background', 'url(/img/sidebar-menu-vertical-bg.gif) repeat-y 7px 0');
				$(childList).slideDown('fast');
			}
			//$(childList).animate({height: 'toggle'}, 500, 'easeInOutExpo');
		});
	});
})(jQuery);
