$(document).ready(function ()
{
    // Init slider
    $("#slider").easySlider({
        auto: true,
        continuous: true,
        //speed: 5000,
        pause: 30000
    });

    // Init quotes
    var quoteText = $(".quotebox blockquote p");
    if (!quoteText.length)
        quoteText = $(".quotebox blockquote");
    quoteText.append("<div class='right-quote'></div>");
});

