(function( $ ) {
  $.fn.amTabs = function() {
    
    this.each(function() {
    	var $this = $(this);
    	$this.click(function() {  
        	//e.preventDefault;
        	$this.parents('ul').find('li').removeClass('selected');
			$this.parent('li').addClass('selected');
			var id = $this.attr('href');
			$('.tab').hide();
			$(id).fadeIn('slow');
			return false;            
        }); 
    	  
    });
              
  };
})( jQuery );
