jQuery.noConflict();
jQuery(document).ready( 
	function(){
	   var temp=0;
	   if(temp<jQuery("div.first").find("div.mod-btm").height()){
		   temp=jQuery("div.first").find("div.mod-btm").height();
	   }
	   if(temp<jQuery("div.second").find("div.mod-btm").height()){
		   temp=jQuery("div.second").find("div.mod-btm").height();
	   }
	   if(temp<jQuery("div.third").find("div.mod-btm").height()){
		   temp=jQuery("div.third").find("div.mod-btm").height();
	   }
	   jQuery("div.first").find("div.mod-btm").height(temp);
	   jQuery("div.second").find("div.mod-btm").height(temp);
	   jQuery("div.third").find("div.mod-btm").height(temp);
	   jQuery("ul.latestnews").find("li:odd").addClass("odd");
    }
);
