﻿$(document).ready(function() {
    // Starta slideshow
    $('.c4sliderandom').cycle({
        fx: 'turnDown',
        timeout: 240000,
        speed: 1000,
        random: 1
    });

    $('.anslagspel').cycle({
        timeout: 15000,
        speed: 500,
        random: 1
    });

    $('.c4sliderandom').fadeIn(200);

    $(".fadein").fadeIn(600);

    $(".rollin").show(600);

    // Anti spam
    $(".antispam").val("ok");

    $('.c4click').mouseover(function(e) {
        $(this).addClass("hover");
    })
    .mouseout(function(e) {
        $(this).removeClass("hover");
    })
    .click(function(e) {
        $(this).find("a").each(function(e) {
            if ($(this).attr("href") != null) {
                document.location = $(this).attr("href");
            }
        });
    });
});

