$(document).ready(function () {
    $('.fastigheterItem').click(function () {
        window.location.href = $(this).attr("itemUrl");
    });

    $(".fastigheterItem").hover(
      function () {
          $(this).addClass("fastigheterItemHover");
          $("img", this).stop(true, true).fadeTo('slow', 1);
      },
      function () {
          $(this).removeClass("fastigheterItemHover");
          $("img", this).stop(true, true).fadeTo('slow', 0.8);
      }
    );

    $('.fastighetThumbnails img').click(function () {
        var fullImage = $(this).attr("fullImage");
        $('#fastighetMainImage').fadeOut("fast", function () {
            $('#fastighetMainImage').attr("src", fullImage).fadeIn("fast");
        });
    });
});
