// JavaScript Document
(function() {
    
				
	$.fn.accordion = function(){

			var _this=this;
			
			$(_this).find("li a").not(".link").click(function(){
				
				//$(this).addClass("linkClick");
				$(this).parent().find("div").slideDown("slow");
				
				//$(_this).find("a").not(this).removeClass("linkClick");
				$(_this).find("a").not(this).parent().find("div").not(this).slideUp("slow");
				return false;
			});
			
	}
	
})(jQuery);

