/*

//if you want to take the survey down, uncomment the next line:
//launchSurvey = false;
	if(launchSurvey){
		$('body #page').prepend("<div id=\"notifications\"><div id=\"survey-notification\"><div id=\"surveyheader\"><img src=\"/_common_images/notifications/small-logo.gif\" alt=\"Nationwide logo\" /><a href=\"#\" id=\"survey-close\">Close</a></div><div id=\"body\"><p><img src=\"/_common_images/notifications/your-opinion-counts.gif\" alt=\"Your opinion counts!\" />Tell us what you think of our website. <span class=\"additional-information\">The survey will open in another window for you to complete after your visit.</span></p><div id=\"response\"><a href=\"https://portal.nationet.com/nationwide/surveys/site-survey/default.asp?source=nationwide&campaign=site-survey&execution=yes&referer="+window.location+"\" id=\"survey-yes\">Take the survey</a> <a href=\"#\" id=\"survey-no\">No, thanks</a></div></div></div></div>");
		$('#survey-notification').hide();
		setTimeout(function(){
			$('#survey-notification').show();
		}, 1000);
		var cookieExpiry = new Date();
		$('#survey-yes').click(function(){
			var surveyWin = window.open(this.href,"survey","menubar=yes,resizable=yes,scrollbars=yes,status=yes,toolbar=yes");
			cookieExpiry.setMonth(cookieExpiry.getMonth()+3)
			$('#notifications').remove();
			document.cookie = "siteSurvey=true;path=/;expires="+cookieExpiry.toGMTString()+";";
			return false;
		});
		$('#survey-no').click(function(){
			$('#notifications').remove();
			cookieExpiry.setMonth(cookieExpiry.getMonth()+4)
			document.cookie = "siteSurvey=true;path=/;expires="+cookieExpiry.toGMTString()+";";
			return false;
		});
		$('#survey-close').click(function(){
			$('#notifications').remove();
			cookieExpiry.setMonth(cookieExpiry.getMonth()+1)
			document.cookie = "siteSurvey=true;path=/;expires="+cookieExpiry.toGMTString()+";";
			return false;
		});
		$('#survey-yes, #survey-no').mousedown(function(){
			$(this).css('background-position','0px -19px')
		})
		.mouseup(function(){
			$(this).css('background-position','0px 0px')
		})
		.mouseout(function(){
			$(this).css('background-position','0px 0px')
		});
	}


*/