$(function() {
	$('span.menu').click(function() {
		$(this).parent().children('div.submenu').toggle();
	});
        $('div.demo').each(function() {
           $(this).corner();
        });
});
