jQuery(document).ready(function($) {
    
  //search box text function
  $('input#s').click(function(){
  	if ( $(this).val() == 'Search our blog...' ) { 
  		$(this).val('');
  	}
  });
  $('input#s').blur(function(){
  	if ( $(this).val().length < 1 )
  		$(this).val('Search our blog...');
  });
  
  $('#FirstName').click(function(){
  	if ( $(this).val() == 'Please enter your name...' )
  		$(this).val('');
  });
  $('#FirstName').blur(function(){
  	if ( $(this).val().length < 1 ) 
  		$(this).val('Please enter your name...');
  });
  
  $('#EmailAddress').click(function(){
  	if ( $(this).val() == 'Please enter your email...' )
  		$(this).val('');
  });
  $('#EmailAddress').blur(function(){
  	if ( $(this).val().length < 1 ) 
  		$(this).val('Please enter your email...');
  });
  
  //homepage slideshow
  if ( $('#feature_list').length > 0 ) {
	$.featureList(
		$("#tabs li a"),
		$("#output li"), {
			start_item	:	1, 
			slide_interval : 10
		}
	);
  }
  
});
