$(function()
{

	$('#cycle').cycle({fx: 'fade', pager: '#cycleNav'});
	$('#clients').cycle({fx: 'fade', prev: '#prev1', next: '#next1'});
	Cufon.replace('#content h1, .plainTitle', {fontFamily: 'DejaVu Serif Condensed'});
	//Cufon.replace('.hire, .button', {fontFamily: 'Candara'});
	Cufon.replace('.quickForm label', {fontFamily: 'Candara'});

	$(":text").labelify();
	$("#newsletter").validationEngine();
	$("#quickContact").validationEngine();

		//when a select option changes (e.g. from option1 to option2), then change the div to show the text of option
	$('form .wrapS select').live('change', function() //binds for all current and future  matched elements.	
	{			  
		$(this).parent().find("div.selectShow p").html($(this).children("option:selected").text());
	});
	
	$('.quickForm select').selectBox();
});
