    //jQuery.noConflict();
    jQuery(document).ready(function($){
    
        jQuery('.mcol').makeacolumnlists({cols: 3, colWidth: 305, equalHeight: 'ul', startN: 1});
        jQuery('.mcol2').makeacolumnlists({cols: 3, colWidth: 293, equalHeight: 'ul', startN: 1});
		//$('.article-over').hide();
		$('.article').hover(
			  function () {
				$(this).find('.article-over').fadeIn();
			  }, 
			  function () {
				$(this).find('.article-over').fadeOut('fast');
			  }
			);
    });
