﻿$(document).ready(function () {
    $("#rotator > ul").tabs({ fx: { opacity: "toggle"} }).tabs("rotate", 12000, true); //fx option is used to call animate, you can specify a single option or two in an array, that will be used to do the show and hide effects
    $('.welcome_text1, .welcome_text2').css({ opacity: 0 }).stop().animate({ left: 50, opacity: 1 }, 800, 'linear');
    $('.welcome_link1, .welcome_link2').css({ opacity: 0 }).stop().animate({ right: 40, opacity: 1 }, 800, 'linear');
});
