﻿$(document).ready(function () {
    Cufon.replace('#blocks .blocktitel', { fontFamily: 'Normal' });
    var l_intCounter = currentcolorcounter("#topmenu #work");
    ColorFade("#blocks .blockmove0", l_intCounter, true, false);
    if (l_intCounter >= m_arrColor.length - 1) {
        l_intCounter = -1;
    }
    l_intCounter++;
    ColorFade("#blocks .blockmove1", l_intCounter, true, false);
    if (l_intCounter >= m_arrColor.length - 1) {
        l_intCounter = -1;
    }
    l_intCounter++;
    ColorFade("#blocks .blockmove2", l_intCounter, true, false);
    if (l_intCounter >= m_arrColor.length - 1) {
        l_intCounter = -1;
    }
    l_intCounter++;
    ColorFade("#blocks .blockmove3", l_intCounter, true, false);

    $('#blocks .blockcontainer').hoverIntent({
        over: function () {
            $(this).children('.blockmove').animate({ "top": "-=120px" }, {
                duration: "medium",
                queue: true,
                easing: "swing"
            });
        },
        timeout:10,
        out: function() {
            $(this).children('.blockmove').animate({ "top": "+=120px" }, {
                duration: "medium",
                queue: true,
                easing: "swing"
            });
        }
    });
    w3slive($('#w3slivemover'));

    $.get('/Ajax/SocialMedia.aspx',{ action: "get", time: new Date().getTime() } , function (data) {
    });
});

