jQuery(document).ready(function($) {
    // $() will work as an alias for jQuery() inside of this function
	$("#quotes").quotator({
    	speed : 9500,
    	json : "js/quotator_quotes.js"
	});
});

jQuery(document).ready(function($) {
    // $() will work as an alias for jQuery() inside of this function
	$("#quotes2").quotator({
    	speed : 7000,
    	json : "js/quotator_quotes2.js"
	});
});

jQuery(document).ready(function($) {
    // $() will work as an alias for jQuery() inside of this function
	$("#quotes3").quotator({
    	speed : 5000,
    	json : "js/quotator_quotes3.js"
	});
});
