// Force "blog" and other external linkz to open in a new window
$(document).ready(function(){
        // Link is clicked
	$('a#ContentRoot_blog_1, a.external').click(function(){
                // If the clicked element has a HREF attribue
		if ($(this).attr("href")) {
                        // Open a new window and use the clicked element's href attribute
			window.open(this.href);
                        // Cancel the action for the current window
			return false;
		}
	});
});