$(document).ready(function(){
	$("aside nav").html(replaceAll($("aside nav").html(),"®", "<sup>&reg;</sup>"));
	$(".textblock").each(function(){
		$(this).html(replaceAll($(this).html(),"®", "<sup>&reg;</sup>"));
	});
	$("#midNav").html(replaceAll($("#midNav").html(),"®", "<sup>&reg;</sup>"));
	$(".textblock tr:nth-child(odd)").addClass("odd");
	$("#langs").hover(function(){
		$("#splashFade").fadeIn(2000);
	});
    $('a.fancy').fancybox({ margin: 50, padding: 0, overlayColor: '#000' });
    $('[placeholder]').placeholder();
})
function replaceAll(txt, replace, with_this) {
	if(txt != null){
  		return txt.replace(new RegExp(replace, 'g'),with_this);
  	}
}
