﻿$(document).ready(function(){
	// set external links
	$('a.external-blog').click(function(){
		window.open(this.href, 'bloggerPopup', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width=400,height=450',true);
		return false;
	});
	
	$('a.external-blog').attr("title","Opens Blogger comments in a new window or tab");
});
