﻿$(document).ready(function() {

    $(".tilleggWrapper").hover(
    function() {
        var til = $(this).find(".tilleggDetaljer");
        til.stop(false, false);
        til.css({ "border": "solid black 1px" });
        til.animate({ width: "200px", left: "-200px" }, "slow");        
        $(this).find(".tilleggStortBilde").stop(false,true).toggle("slow");
    },
    function() {
        var til = $(this).find(".tilleggDetaljer");
        til.stop(false, false);
        til.animate({ width: "0px", left: "-2px" }, "fast");
        til.css({ "border": "0" });
        $(this).find(".tilleggStortBilde").stop(true,true).toggle("fast");
    });
    $(".tilleggWrapper").click(
    function() {

    });
    $(".tilleggStortBilde").hide();

});

