(function($) {

$.dropdown = {

	
	//public methods
	
/* --------------------------------------------------------------------------------------------------------------------------------- */

	_init: function(){
	
	var elm = $('ul#sideMenu-dd');
	$('a.link',elm).click(function(){
		if($(this).hasClass("active")){
			$(this).removeClass("active");
	$(this).next('div.dropdown').slideUp('slow', function() {
    // Animation complete.
 	 });
		} else {
			$(this).addClass("active");
		$(this).next('div.dropdown').slideDown('slow', function() {
    // Animation complete.
 	 });	
		}
		return false;
	});
	
		
	}
	




/* --------------------------------------------------------------------------------------------------------------------------------- */

}

// Shortcut functions
jDropdown = function(){

	$.dropdown._init();
};

$(document).ready(function(){
							jDropdown();
							
							});

})(jQuery);