/* Initialize JavaScript */

//////////////// JQUERY INIT

$(document).ready(function() {
							 
	//slideshow
	$("#slideImages").cycle({ 
    	fx:    'fade', 
    	speed:  500,
		timeout: 4000,
		pause: 0,
		pager: '#slideNav'
 	});		

   
   //quotes
	$("#quoteSlides").cycle({ 
    	fx:    'blindY', 
    	speed:  300,
		timeout: 6000,
		pause: 0
 	});	  
	
	//services
	$("#services ul li .titleWrapper").hover(
		function(){
			$("h3",this).addClass("mouseover");
		},
		function(){
			$("h3",this).removeClass("mouseover");
		}		
	);
	
});


//////////////// JS FUNCTIONS

