$(function() {
// start the icon carousel
$('#icon-carousel').carousel({
interval: 5000
});
var quotes = new Array(
"Donate $1 and help Font Awesome get MAJOR upgrades!",
"Donate $1 and help give Font Awesome SVG support!",
"Donate $1 and help give Font Awesome better icon search!",
"Get your company logo added to Font Awesome!",
"Get your company logo added to Font Awesome!",
"Need a specific icon added to Font Awesome?"
),
random_quote = quotes[Math.floor( Math.random() * quotes.length )];
$('.tagline').html(random_quote);
});