$(document).ready(function() {
    $('.RotatingPicture').crossSlide({
            sleep: 2,
            fade: 1
        }, [
        {
            src: 'data/img/Start/start1.jpg',
            from: 'bottom right 1x',
            to: 'top left 1.5x',
            time: 3
        },
        {
            src: 'data/img/Start/start2.jpg',
            from: 'top right 1x',
            to: 'bottom left 1.5x',
            time: 3
        },
        {
            src: 'data/img/Start/start3.jpg',
            from: 'bottom right',
            to: 'top left 1.5x',
            time: 3
        }
    ]);
    /*$(".content ul").wslide({
        width: 735,
        height: 410,
        fade: true,
        duration: 1000
    });*/
    $('.rightArea').hover(
        function() {
            $(this).animate({ marginLeft: "-=180", width: "+=180", height: "+=130" }).css("z-index", "3");
        },
        function() {
            $(this).animate({ marginLeft: "+=180", width: "-=180", height: "-=130" }).oneTime(350,function(){$('.rightArea').css("z-index", "0");});
        }
    );
});
