$(function () {
    $('table.gradient1').gradient({
        topcolor: '#c6d7eb',
        bottomcolor: '#154da0',
        horizontal: false,
        opacity:85
    });
    $('div.gradient2').gradient({
        topcolor: '#ff5500',
        bottomcolor: '#ffffff',
        horizontal: false,
        opacity: 80
    });
    $('div.gradient2').gradient({
        topcolor: '#ff5500',
        bottomcolor: '#ffffff',
        horizontal: false,
        opacity: 80
    });
    $(".auto .jCarouselLite").jCarouselLite({
        auto: 5500,
        speed: 1000,
        vertical: true,
        visible: 2
    });

});
jQuery(document.body).imageZoom();

$(document).ready(function() {
        // Basic usage
        // $('#twitterSearch').liveTwitter('Alexandra_sa', {limit: 5, rate: 5000});
        $('#twitterUserTimeline').liveTwitter('Alexandra_sa', {limit: 20, refresh: false, mode: 'user_timeline'});

        // Changing the query
        $('#searchLinks a').each(function(){
            var query = $(this).text();
            $(this).click(function(){
                // Update the search
                $('#twitterSearch').liveTwitter(query);
                // Update the header
                $('#searchTerm').text(query);
                return false;
            });
        });
 });


