jQuery(document).ready(function(){
	/**
	 * Add some visual effects to elements via scripting
	 */
	jQuery('blockquote').css({
	 'border-radius': '8px',
  '-moz-border-radius': '8px',
  '-webkit-border-radius': '8px'
	});
	
	jQuery('.reminders dt').css({
	 'border-radius': '8px',
  '-moz-border-radius': '8px',
  '-webkit-border-radius': '8px'
	});
	
	jQuery('.reminders dd').css({
	 'border-radius': '8px',
  '-moz-border-radius': '8px',
  '-webkit-border-radius': '8px'
	});
	
	//set up the home page movie
	jQuery('body#index #callout div#callout-flash-slideshow').flash({
		src: '/swf/slideshow.swf',
		width: 510,
		height: 264, 
		base:'.', 
    majorversion:'7', 
    build:'0',
		menu:'false'
	});
	
	//add the "toggle-link" class to the accordian headings
	jQuery('dl.reminders dt').addClass('toggle-link');

	
	//accordians for the larger lists of content
	jQuery('dl.reminders').accordion({
	 active: false,
	 animated: 'easeOutSine',
	 autoHeight: false,
	 selectedClass: 'toggle-off',
	 header: 'dt'
	});
  
  /*jQuery('dl.reminders').accordion({ 
    event: 'click', 
    active: false, 
    alwaysOpen: false, 
    animated: 'bounceslide', 
    autoheight: false, 
    selectedClass: 'toggle-off',
    header: 'dt'
  });*/
	
});