﻿// Functions specific to a site.

(function($) {
	$(document).ready(function() {
		// Place document manipulation code here
		Cufon.replace('h1, .banner-heading span');
		Cufon.replace('.L1', {
			hover: true			  
		});
		Cufon.replace(".home #header-banner h1", {color: '-linear-gradient(#84150a, #a51b0c)'});
		Cufon.replace(".home #header-banner h1 span", {color: '-linear-gradient(#646464, #767676)'});
		
		$('#subnav li:last').addClass('sub-last-child');
		$('#mainnavigation ul ul li:last-child').addClass('drop-last-child');
		$('#content-bottom div:last').addClass('last-overview');
		$('#mainnavigation > div > ul > li > a').addClass('L1');

//	Superfish drop-down menus
		$('#mainnavigation ul').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);
