// JavaScript Document

$(function(){
	
	$("#accreditations").cycle({ 
    	fx: 'scrollDown'
	});

	$("#subscribeSubmit").click(function(){
		uname = $("#uname").val();
		$("#newsletterUname").val(uname);
		uemail = $("#uemail").val();
		//alert (uname+uemail);
		$("#newsletterUemail").val(uemail);
		$("#rssUemail").val(uemail);
		radio2 = document.getElementById("utype_2");
		radioa = document.getElementById("utype_a");
		radiob = document.getElementById("utype_b");
		if (radio2.checked) {
			//alert("both");
			$("#rssForm").submit();
			$("#newsletterSubmit").click();
		}
		if (radioa.checked) {
			//alert("a");
			$("#newsletterSubmit").click();
		}
		if (radiob.checked) {
			//alert("b");
			$("#rssForm").submit();
		}
	});
	
	
	/*
	$.get('rss.php',function(data){
		$('#feedcontainer').html(data);
	});
	*/


});




