function print_footer(){
	document.write("<div id='footer'>");
	document.write('	&copy; 2009. CARE Professional Liability Insurance, LLC.  All Rights Reserved.');
	document.write('</div>');
}

$(document).ready(function(){

	$("#home").click(function () {window.location='index.htm'});

   $(".navlink1").mouseover(function(){
	  $(this).css("font-style", "italic");
	  $(this).css("font-weight", "bold");
	}).mouseout(function(){
	  $(this).css("font-style", "normal");
	  $(this).css("font-weight", "normal");
	});
	
	$(".navlink2").mouseover(function(){
		
		var str = "url('images/" + $(this).attr("id") + "_navbg.png')";
		
	  $(this).parent().css("background-image", str);
	  $(this).css("color", "white");
	}).mouseout(function(){
	  $(this).parent().css("background-image", "none");
	  $(this).css("color", "#221e72");
	});

 });	
