$(document).ready(function(){

	$('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');
	});
		
	// This is to slow down spam on all the forms.
	$('form').append('<input type="hidden" name="secretsquirrel" value="ihatebots" />');
	
	$('.form input.text, .form textarea.text').clearingInput({method:'fromLabel'});
	
	// Add class "last" to last element of Testimonial list
	$('.testimony:last').addClass('last');
});

Cufon.replace('.visual-box h2,.content h1',{fontFamily:'din'});
Cufon.replace('.visual-box p,.side-bar h3,.side-bar h2,.blocks-holder h2',{fontFamily:'Minion Pro'});
