//extend-text.js
jQuery(document).ready(function($){
	$('#extra-text').hide();
	$('ul.controller').show();

	$('.controller .read-more a').click(function(){
		$(this).parent().fadeOut('fast');
		$('li.hide-this').fadeIn('slow');
		$('#extra-text').slideDown('fast');
	});
	
	$('.controller .hide-this a').click(function(){
		$(this).parent().fadeOut('fast');
		$('li.read-more').fadeIn('slow');
		$('#extra-text').slideUp('fast');
	});
  
  
  $('#ChronoContact_newsletter').submit( function(){
    
    var v = $.trim(this.ea.value);
    if (v == '' || v == 'Enter Your Email Address'){
      alert('Please enter your email address.');
      return false;
    }
    
  });
});

function bookmarksite(t,u){
  alert('Press CTRL + D to bookmark this page.');
}

