/* 

heyokadesign Bootup Script
v. 1.0

last mod: 9-28-08
by: Mark

jQuery based onloads. Most of this is just example code. Please remove all unnecessary code (including this comment).


*/


/*################################################################################## ABT BASE Functions */


$(document).ready(function() {

	/* Home Page Announcements crossfading */
		$("#ind-news").addClass("news-canvas");
		//$('#ind-news ul').innerfade({ speed: 'slow', timeout: 6000, type: 'sequence', containerheight: '20px' });
	/* End Home Page Announcements crossfading */
	
	/* Home Page Graphic crossfading */
		$("#main-graphics").addClass("canvas");
		$('#main-graphics ul').innerfade({ speed: 'slow', timeout: 10000, type: 'sequence', containerheight: '370px' });
	/* End Home Page Graphic crossfading */
	
	/* Google Map */
	if ($("#location-map").length > 0) {
		initializeMap();
	}
	/* End Google Map */

	
});