﻿// Functions specific to a site.

(function($) {
	$(document).ready(function() {
		// Place document manipulation code here
		//$('#subnav-title:contains("What our Customers are Saying")').hide();
		
		Cufon.replace('h1, #subnav-title, .contact-header');
		
		$('#util-contact').hover( function(){
			$(this).parent('li').addClass('contact-hover');
			$('#contact-drop').show();
		});
		$('#contact-drop').mouseleave( function(){
			$(this).parent('li').removeClass('contact-hover');
			$(this).hide();
		});
		if ($('.testimonial').length != 0) {
			$('body').randomClass( [ 'bg1', 'bg2', 'bg3', 'bg4', 'bg5', 'bg6' ] );
			$('.testimonial li').each(function(i){
				$(this).addClass("test" + (i + 1));
			});
			/*$('.testimonial > ul').cycle({
				random: 1,
				delay: 0,
				timeout: 0
			});*/
		}

//	Superfish drop-down menus
//		$('.main-nav ul.L1').superfish({
//			delay: 500, // one second delay on mouseout
//			animation: { opacity: 'show' }, // fade-in and slide-down animation
//			speed: 'fast', // faster animation speed
//			autoArrows: false,
//			dropShadows: false
//		}); 		
	}); 
})(jQuery);
