// JavaScript Document
Cufon.replace('.cuf, h1, h2, h3, h4, #footer a, #sidebar a, #nav, .page-template-servicesPage-php #column1 li, #fp-Rcol li, .wp-caption-text', { fontFamily: 'myriad', hover: true }); 

$(document).ready(function() {
	
	$("#contactArea").css('height', '0px');

	$("#cnt-btn").toggle( 
				function () { 
 					$("#contactArea").animate({height: "150px"}, {queue:false, duration: 1700, easing: 'easeOutQuad'}) ;
					$("#cnt-btn").css('background-position', '0 -108px');
                }, 
                function () { 
					$("#contactArea").animate({height: "0px"}, {queue:false, duration: 1700, easing: 'easeOutQuad'}) 
					$("#cnt-btn").css('background-position', '0 0');
				} 
		); 
	
	$('.slideshow1>div p').cycle({timeout: 5000 })
	$('.slideshow2>div p').cycle({timeout: 6000 })
});


