    //jQuery.noConflict();
	var overParent = false;
	
    jQuery(document).ready(function($){
        jQuery('.mcol').makeacolumnlists({cols: 3, colWidth: 300, equalHeight: 'ul', startN: 1});
		jQuery('.mcol2').makeacolumnlists({cols: 3, colWidth: 293, equalHeight: 'ul', startN: 1});
		jQuery('ul.mcol li').hover(ImgOpacity, ImgOpacityUp);
	});
	
	function ImgOpacity(event){
		jQuery(event.currentTarget).find('a img').animate({opacity: 0.1});
	}
	
	function ImgOpacityUp(event){
		jQuery(event.currentTarget).find('a img').animate({opacity: 1});
	}
