
$(document).ready(function() {
 // shows the slickbox on clicking the noted link
  $('a#slide-down').click(function() {
	$('#slickbox').show('slow');
	return false;
  });
 // hides the slickbox on clicking the noted link
  $('a#slide-up').click(function() {
	$('#slickbox').hide('fast');
	return false;
  });
 // toggles the slickbox on clicking the noted link
  $('a#slick-slidetoggle').click(function() {
	$('#slickbox').slideToggle(400);
	return false;
  });
  
		$('a#address-show').click(function() {
	$('#address-index,#cta-content2').fadeIn('slow');
	$('#getstarted').fadeOut('fast');
	return false;
  });
});