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

(function($){  
	$.fn.DropDownList = function(options) {  
			
		return this.each(function() {   
			$link = $(this).find(".button a");
			
			/* Link function */
			$link.click( function() {
				$drop = $(this).next("ul");
				$drop.slideToggle();
			}).blur( function() { 
				$drop = $(this).next("ul");
				$drop.slideToggle();
			});
			
			
		});
	};
})(jQuery);




function void(i) {
	if( !i || i == 0)
		return false;
	else
		return true;
}