﻿$(document).ready(function() {
    // Starta slideshow
    $('.bildspel').cycle({
        fx: 'fade',
        timeout: 9910
    });
    $("#logo1").fadeIn(500);
    $("#boll").fadeIn(800);
    $("#mto").click(function(e) {
        // En liten rebus
        var LitetO = "o:";
        document.location = "mai" + "lt" + LitetO + "epost" + "@" + "calla" + "nder" + ".s" + "e";
    });

    $(".klicktd").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");
            }
        });
    });
});