jQuery( function($) {
	
	// Allow JS dependant styling:
	$('body').removeClass('no-js');
	
	
	// Left Nav animation
	$('#leftnav > ul > li').not('.current_page_item, .current_page_ancestor').hover(
	
		function() {
			$(this).find('ul').stop(true, true).slideDown();
		},
		function() {
			//$(this).find('ul').stop(true, true).slideUp();
		}
	);
	
	
	// top nav menu
	$("ul.sf-menu").superfish();
	
	
	$('.home-slider').kwicks({  
    	max : 825,  
		spacing : 0,
		event : 'mouseenter'
	}); 
	
	// Homepage Testimonials
	$('#homepage-testimonials').cycle();
	
	
		
	// Search box (select all text on focus)
	var searchbox = $('#searchform input');
	
	searchbox.focus( function() {
	  this.select();
	});
	
});