// JavaScript Document
$(document).ready(function(){
						   
						   
      $("a[@name=aba]").click(function(){
			$("div[@name=layers]").hide();
			$("a[@name=aba]").attr('class','');
			$(this).blur();
	  		$(this).parent().next().children().fadeIn();
			//$(this).parent().children('div').show();
			$(this).addClass('select');
});

});

