
(function() {
    var html5elmeents = "abbr|article|aside|dialog|footer|header|hgroup|menu|nav|section|time|video".split('|');
    for (var i = 0; i < html5elmeents.length; i++) {
        document.createElement(html5elmeents[i]);
    }
})();

$(document).ready(function(){

    $('.meta').hide();

	rgb1();

    $('.index li').hover(function(){

        $('.meta', this).slideDown();

    }, function(){
        
        $('.meta', this).slideUp();
    
    });
});

function rgb1()
{
    $('a.contribute').animate({
        color: "rgb(255,0,0)",
    }, 5000, function() {
        rgb2();
    });
}

function rgb2()
{
    $('a.contribute').animate({
        color: "rgb(0,255,0)",
    }, 5000, function() {
        rgb3();
    });
}

function rgb3()
{
    $('a.contribute').animate({
        color: "rgb(0,0,255)",
    }, 5000, function() {
        rgb1();
    });
}

