window.onload=function(){
	var current_url = location.href;

	var r=document.createElement('script');
 	r.id='tumblr';
 	r.setAttribute('type','text/javascript');
 	r.setAttribute('src','http://www.tri-state.nl/tumblrBadge-1.1.js');
 	var hd=document.getElementsByTagName('head')[0];
 	hd.appendChild(r);

 	document.getElementById('p#2563294').onclick = load_blog; // YOU MUST EDIT THIS LINE
	var blog_link = current_url.search(/#2563294/); // YOU MUST EDIT THIS LINE
	if ( blog_link > "-1" ) { load_blog(); }	
}

function load_blog() {
	setTimeout("load_timer()", 1000); //wait a bit until everything is loaded.
}

function load_timer() {
	var theBlogContent = document.getElementById('tumblr-badge'); //stupid IE!
	document.getElementById('blog').innerHTML = theBlogContent.innerHTML;
}

