<!--//---------------------------------+
//  Developed by Roshan Bhattarai 
//  Visit http://roshanbh.com.np for this script and more.
//  This notice MUST stay intact for legal use
// --------------------------------->
$(document).ready(function() {

$("ul#menu li ul").hide();
$("ul#menu li ul").slideUp(05);
$("ul#menu li.top").children("ul:eq(0)").slideDown(05);
$("ul#menu li.mid").children("ul:eq(0)").slideDown(05);


$('a.main').click(function(event){
		if (this == event.target) {
		current = this;
		$('a.main').each(function(i) {
		if (this != current) {$(this).next("ul").slideUp(05);}
		});
		$(this).next("ul:eq(0)").slideToggle(05); 
		}
	});

$('a.sub').click(function(event){
		if (this == event.target) {
		current = this;
		$('a.sub').each(function(i) {
		if (this != current) {$(this).next("ul").slideUp(05);}
		});
		$(this).next("ul:eq(0)").slideToggle(05); 
		}
	});

});
