$(function(){
/***************************/

//$("br, .msonormal").replaceWith("<div style='background:red; min-height:20px; margin-bottom:1px;' />");

$("body.detail a:contains('Case Histories'), body.splash a:contains('Home')").addClass("selected");

var splashCode = 	"" +
		"<div id='splash'>" +
			"<div>" +
				"<h1>It's good that your people are talking. Wouldn't it be great if they were all saying the same thing?</h1>" +
				"<p><a href='home.cfm'>Skip Intro</a></p>" +
			"</div>" +
		"</div>";

function splashFade(){
	$('#splash').fadeOut(1500);
}

$("body.splash").append(splashCode);
$("#splash").each(function(){
	$(this).css("height", $(window).attr("innerHeight") ? $(window).attr("innerHeight") : $("html").attr("clientHeight"));						   
}).click(function(){
	splashFade();
});
setTimeout(splashFade, 7000);





$('img').each(function(){
    if ($(this).css("float") == "right") {
        $(this).addClass("right");
    }
    if ($(this).css("float") == "left") {
        $(this).addClass("left");
    }
});



/***************************/
});
