$(document).ready(function(){
	// Stuff to do as soon as the DOM is ready;
	$('div.toggle').hide();
		
	$('.round').corner('12px');

	
	$('a.toggle').toggle(function() {
		// Stuff to do every *odd* time the element is clicked;
		$('div.toggle').slideDown();
	}, function() {
		// Stuff to do every *even* time the element is clicked;
		$('div.toggle').slideUp('slow');
	});
	
	// InnerFade the testimonies
	/*$('#testimonies ul').innerfade({
		speed: 'slow',
		timeout: 5000,
		type: 'sequence',
		containerheight: '300px' 
	});*/
		
	// This is to slow down spam on all the forms.
	$('form').append('<input type="hidden" name="secretsquirrel" value="ihatebots" />');
	
	$('input[name="payment_method"]').click(function(){
		if ($(this).val()=='creditcard')
			$('#creditcard').slideDown();
		else
			$('#creditcard').slideUp();
	});
	
});

swfobject.embedSWF("/swf/SuperContest2.swf", "contest", "200", "200", "9.0.0", "/swf/expressInstall.swf", {}, {}, {wmode:"transparent"});

