/*	
	activate form functions
*/

$(document).ready(function(){
	if ($("ul.annual li").attr("class") == "active") {
		$("h2.annual").html("If you don&rsquo;t wish to receive the annual, please click this image:");
	} else {
		$("h2.annual").html("To request the annual, please click the image below:");
	}
	$("ul.annual li").css("cursor","pointer").click(function() {
		if ($(this).attr("class") != "active") {
			$("h2.annual").html("If you don&rsquo;t wish to receive the annual, please click this image:");
			$("#request-annual").attr("checked","yes");
			$(this).attr("class","active");
			$(".posters a").each(function() {
				$thisHref = $(this).attr("href").split("&a=");
				$(this).attr("href",$thisHref[0]+"&a=true");
			});
		} else {
			$("h2.annual").html("To request the annual, please click the image below:");
			$("#request-annual").attr("checked","");
			$(this).removeClass("active");
			$(".posters a").each(function() {
				$thisHref = $(this).attr("href").split("&a=");
				$(this).attr("href",$thisHref[0]+"&a=false");
			});
		}
	});
});
