jQuery.noConflict();

jQuery(document).ready(function () {
    var thelink1 = jQuery('body#homePage #blogcol1 .post1 .postTitle a:last').attr("href");
    var thelink2 = jQuery('body#homePage #blogcol2 .post1 .postTitle a:last').attr("href");
	var thehtml1 = jQuery("body#homePage #blogcol1 .post1 .postBody").html();
	var thehtml2 = jQuery("body#homePage #blogcol2 .post1 .postBody").html();
	
	jQuery("body#homePage #blogcol1 .post1 .postBody").html(thehtml1 + '<a class="homereadmore" href="'+thelink1+'">Read More &gt;</a>');
	//jQuery("body#homePage #blogcol2 .post1 .postBody").html(thehtml2 + '<a class="homereadmore" href="'+thelink2+'">Read More &gt;</a>');
		
	jQuery('body#homePage #blogcol1 .post1 .postBody a[href^="http://"]').attr("target","_blank");	
	//jQuery('body#homePage #blogcol2 .post1 .postBody a[href^="http://"]').attr("target","_blank");	
	
	jQuery('body#homePage .menucol .blogList h2.postTitle a[href^="http://"]').attr("target","_blank");	
});
