var J = jQuery.noConflict();
J(function() {	
    
	J(".commentForm label:last").attr("style","display: none");
	J(".loginbox label:last").attr("style","display: none");
	
	J("table.NavigationMenu td:last").attr("style","border-right: none");
		
    var blogContent = J(".recentposts").html();
        J("#blogFeed").html(blogContent);
        J("#blogFeed li a:first").addClass("first_blog");
        J("#blogFeed li:first").addClass("first_blog_post");
         
    
    var newsContent =J(".newsrss").html();
        J("#news").html(newsContent);
        
        J("#news div:first").addClass("first_news");
    J(".first_news .news_desc").show();
    J(".first_news a").attr("style","color: #fff; border: none; background: #273040; height: 23px; padding: 7px 7px 0; width: 260px; line-height: 14px;");

      
});