jQuery.articlePlugin = {
  
	changeDetails: function(id){
  	
		jQuery.getJSON ('/daemon/articles.php', {'id': id}, function(data) {
		  
	  		jQuery('#aImg').fadeOut('slow');
	
			  jQuery('#aContent').hide('slow', function() {
	  	           jQuery('#aImg').attr({src: "/images/articles/" + data.articleId + ".jpg"}).fadeIn('slow');
	  	           jQuery('#aId').html(data.title);
		  	       jQuery('#aContent').html(data.content).show('slow');
	  	      });
	   	      
	  	      jQuery('#aContent').show('slow');
		      jQuery('#aImg').attr({alt: data.title});
    	})
    }
};