$(document).ready(function(){
	var q1="";
	var q2="";
	var q3="";
	var currLocation = window.location.toString();
	$("#foundationNav img").hover(
		function(){
			if($(this).parent("a").attr("href")!="#"){
				$(this).attr("src",$(this).attr("src").replace("off","on"));
			}
		},
		function(){
			if($(this).parent("a").attr("href")!="#"){
				$(this).attr("src",$(this).attr("src").replace("on","off"));
			}
		});
	$("#allQuestions input[type='radio']").click(function(){
		q1 = $("#question1 input[@checked]").attr("value");
		q2 = $("#question2 input[@checked]").attr("value");
		q3 = $("#question3 input[@checked]").attr("value");
		if(q1!=undefined && q2!=undefined && q3!=undefined){
			result = "result" + q1 + q2 + ".aspx";
			$("#showResult").fadeIn("slow");
			$("#showResult a").attr("href",result);
		}
	});
});
