function changecolor(color){
	$("body").css("background-color", color);
	$(".pagenav a").css("color", color);
	$("#header h1 a").css("color", color);
	$("#content p a").css("border-bottom", "1px dashed " + color);
	$("#content p a").hover(
		function(){ $(this).css("border-bottom", "1px solid " + color); },
		function(){ $(this).css("border-bottom", "1px dashed " + color); }
	);
	//$(".post h3 a").css("color", color);
}

var colors = [
	"#5218FA",  //han blue
	"#003153",  //Prussian blue
	"#00416A",  //Indigo Dye
	"#191970",  //Midnight blue
	"#0F4D92",  //Yale Blue
]

$(document).ready(function(){
		var r = Math.floor(Math.random()*5)
		changecolor(colors[r]);
		$(".post h3 a").each(function(){
			$(this).html(
				'<img src="http://metaphox.name/alpha/h3gen.php?text='+
				//'<img src="http://localhost/h3gen.php?text='+
				$(this).text()+
				'" alt="'+$(this).text()+'" />');
		});
});