$(document).ready(function() {      
    //Execute the slideShow, set 10 seconds for each image
    slideShow(10000); 	
	
	// Initialize the text sizer's buttons
	$('#textsizer a').textresizer({
      target: "#mainframe",
	  type:   "fontSize",
	  sizes:  [ "1em", "1.2em","1.3em"],
	  selectedIndex: 0
	});
	
	//Start the news ticker
	var $news = $('#news-ticker');
	$news.serialScroll({
		items:'div',
		duration:5000,
		force:true,
		axis:'y',
		cycle:true,
		lazy:true,
		step:2,
		interval:5,
		constant:false,
		stop:true
	});	
});
jQuery.easing.easeOutQuart = function (x, t, b, c, d) {
	return -c * ((t=t/d-1)*t*t*t - 1) + b;
};


/*
jQuery(document).ready( function() {
	//Execute the slideShow, set 10 seconds for each images  
    slideShow(10000); 	

	// Initialize the text sizer's buttons
	jQuery( "#textsizer a" ).textresizer({
      target: "#mainframe",
	  type:   "fontSize",
	  sizes:  [ "1em", "1.2em","1.3em"],
	  selectedIndex: 0
	});
});*/
