$(document).ready(function(){

	//replace relative links to absolute
	$("a").each(function(){
		if(this.href) this.href = this.toString();
	});

});
