/*
	4.3.2010
	change blogger links to open in new window
	to be included in blogger.com layout after jquery 1.4.2
	if opened in same window through iframe, blogger resets top, so one can't use back button

*/
$(document).ready(function(){
	$("div.post-body.entry-content a").attr("target", "_blank");
});
