/* Navigation jQuery code for NathanBolender.com */

$(function() {
	$("#nav img").hover(function() {
		// (onmouseover)
		// if this is not already selected...
		if (($(this).attr("src").split("_s.").join(".")==$(this).attr("src").split(".").join(".")))
			// make it selected...
			$(this).attr("src", $(this).attr("src").split(".").join("_s."));
		else
			$(this).attr("id","selected");
	}, function() {
		// (onmouseout)
		if ($(this).attr("id")!="selected")
			$(this).attr("src", $(this).attr("src").split("_s.").join("."));
	});
});