// JavaScript Document

$(document).ready(function() {

	$(".rateNo").click(function() {
		$(".rateOptions").hide();
		$(".thankyou").fadeIn();
		$.post("inc/ratePageResults.php",{"yes":"1","page":window.location.href});
	});
	
	$(".rateYes").click(function() {
		$(".rateOptions").hide();							
		$(".whyNot").fadeIn();	
	});
	
	$(".reasonSubmit").click(function() {
		if($("#rateReason").val() != "") {
			$.post("inc/ratePageResults.php",{"no":"1","page":window.location.href,"reason":$("#rateReason").val()});
			$(".whyNot").hide();	
			$(".thankyou").fadeIn();			
		} else {
			alert("Please help us improve by detailing what you think could be changed on this page.");
			$("#rateReason").css({"border":"1px solid red"});
		}
	});
});
