﻿// Functions specific to a site.

(function($) {
	$(document).ready(function() {
		// Place document manipulation code here
		//Cufon.replace('h1');
		$('#s').blur( function(){
			if(this.value == ''){
				$(this).val('Search Site');	
			}
		});
		$('#s').focus( function(){
			if(this.value == 'Search Site'){
				$(this).val('');	
			}
		});
		$('.home .entry-content > ul li').wrapInner('<span />');
		$('.home .c-w2 > ul > li:first-child').addClass('content-header');
//	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);
