// JavaScript Document
  $(document).ready(function() {
	$('#slideshowHome').cycle({
		fx:              'scrollLeft', 
        delay:  -2000,
        easing:          'easeInSine'
	});
	$('#slideshow').cycle({
		fx:              'fade', 
        delay:  -1000
	});
	
    $(".callout a").hover(
      function () {
        $(this).parent().parent().css("background", "#fff" );
      }, 
      function () {
        $(this).parent().parent().css("background", "#F4EFE9" );
      }
    );
	//$('fieldset label:even').addClass('beige0:');	
  });
