jQuery.noConflict();
jQuery(document).ready(function($){

			$('.article').mouseenter(function(e){
			  $(this).find('.article-over').fadeIn('fast');
			  $(this).find('.preview img').stop().animate({
				opacity : '0.1'
			  }, 400);
			});
			$('.article').mouseleave(function(e){
			  $(this).find('.article-over').fadeOut('fast');
			  $(this).find('.preview img').stop().animate({
				opacity : '1.0'
			  }, 400);
			});
	
});	// end (document).ready
