// Append our new client stylesheet
$('head').append('<link rel="stylesheet" type="text/css" media="screen" href="/sys/styles/newclient.css">');

// Append IE6 specific class
$("#new-client").addClass("ie-panel");

// Apend new client button
$("#copy-scroll").append('<p id="new">New client?</p>');

// Apend back button
$(".panel").append('<p class="hide-me">Back</p>');
	
// Re-style visit us text
$("#new-client").css("display","none");

// Make visit us text look like a link
$("#show-map").hover(
	function () { $(this).css("color","#FF8B00"); }, 
	function () { $(this).css("color","#00853F"); }
);

// Show map
$("#new").click(function() {
	$("#new-client").fadeIn("slow");
});

// Hide map 
$(".hide-me").click(function() {
	$("#new-client").fadeOut("slow");
});