$(function() {

    $('#home_slide').tabs({
        fx: {
          opacity: 'show'
        }
    }).tabs('rotate', 8000);

    $("#home_container .jCarouselLite").jCarouselLite({
        btnNext: "#home_container .next",
        btnPrev: "#home_container .prev",
        auto: 5000,
        visible: 4,
        speed: 800,
        easing: "bounceout",
        mouseWheel: true
    });

});


doOnDocReady = function() {

    $('.HomeTips').addClass("dynhover");

    $(".readmore").css("bottom","0px").css("height","10px").hide();

    $('.HomeTips').hover(
      function () {
        $(this).addClass("ishover");
        $(this).find(".readmore").animate( {bottom: 0, height: 30, opacity: 'toggle' }, 250 );
      }, 
      function () {
        $(this).removeClass("ishover");
        $(this).find(".readmore").animate( {bottom: 0, height: 10, opacity: 'toggle' }, 500 );
      }
    );

    $('.HomeTips a').lightBox();

};

$(document).ready( doOnDocReady );

