﻿// Functions specific to a site.

(function($) {
	$(document).ready(function() {
		// Place document manipulation code here
		Cufon.replace('h1');
$('.menu li:contains("Home")').addClass("nav-home");
$('#subnav .current_page_ancestor > a').addClass("title-active");
$('#searchsubmit').attr('value','');
if($('#s').val() == ''){
			$('#s').val('Search');
		}
		$('#s').focus( function(){ 
			var focusVal = $(this).val();
			if (focusVal == 'Search') {
				$(this).val('');
			}
		});
//	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);
