$(document).ready(function() {
	
	// Dealing with a stupid Chrome font rendering bug
	$.browser.chrome = /chrome/.test(navigator.userAgent.toLowerCase()); 
	
	if($.browser.chrome){
		$('body').addClass('browserChrome');
		$('hgroup#branding h1').replaceWith('<h1><a href="/"><img src="/img/alexis.png">');
	}
	
	// Navigation selected state
	if($("body").hasClass("home")) {
		$("a#jobs").addClass("selected");
	} else if($("body").hasClass("work")) {
		$("a#work").addClass("selected");
	} else {
		$("a#about").addClass("selected");
	}
	
});
