<!--
$(document).ready(function(){
						   
   $("#leftCol li a.on:last").css("color", "#cc0000");
   
   $("#leftCol li a:eq(1)").css({"background-image" : "none" , "height" : "17px"});
						   
   $("ul.rootnav").superfish();

   /*if (document.all&&document.getElementById) {
		navRoot = document.getElementById("rootnav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
					if($.browser.safari) {
						$('#bannerfeature').hide();
					}
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
					if($.browser.safari) {
						$('#bannerfeature').show();
					}
				}
			}
		}
	}*/
	
	$("#q").focus(function() { 
		if(this.value == 'Search our site'){this.value='';}
	});
	$("#q").blur(function() { 
		if(this.value == ''){this.value='Search our site';}
	});
	$('.content-hidden-toggle').click(function(){
	  $(this).parent().parent().find('.content-hidden').slideToggle('fast');
	});
	$('a.href-external').click(function(){
	  window.open($(this).attr('href'));
	  return false;
	});
$("#country").change(function() { 
		selected = $("#country option:selected").val();
		$("span.provinceview").hide();
		$("span.intlview").hide();
		$("span.stateview").hide();
		if(selected == "United States") {
			$("span.stateview").fadeIn("fast");
			$('#state').focus();
		} else if(selected == "Canada") {
			$("span.provinceview").fadeIn("fast");
			$('#province').focus();
		} else {
			if(selected != "") {
				$("span.intlview").fadeIn("fast");
			$('#intl').focus();
			}
		}
	});
	$("#country").change();
	$("#visit").change(function() { 
		if($("#visit").val().indexOf("Referral") != -1) {
			$(".refname-display").fadeIn("fast");
		} else {
			$(".refname-display").hide();
		}
	});
	$("#visit").change();
});
-->