﻿
$(document).ready(function () {
    $(".thumbnail1").hover(
            function () {
                $(this).animate({ opacity: 1.0 }, 200);
                $(".thumbnail2").css("opacity", "0.5");
                $(".thumbnail3").css("opacity", "0.5");
                $(".thumbnail4").css("opacity", "0.5");
                $(".thumbnail5").css("opacity", "0.5");
                $(".imagez").remove();
                $(".link1").append("<img class='imagez' src='http://www.steiffusa.com/imagelibrary//website/homepage/newsite/Picture_01.jpg'/>");
                $(".link1").attr("href", "productlist.aspx?GroupID=1030");
            },
            function () {
                $(".thumbnail").css("opacity", "1.0");
            }
            );
    $(".thumbnail2").hover(
            function () {
                $(".thumbnail1").css("opacity", "0.5");
                $(this).animate({ opacity: 1.0 }, 200);
                $(".thumbnail3").css("opacity", "0.5");
                $(".thumbnail4").css("opacity", "0.5");
                $(".thumbnail5").css("opacity", "0.5");
                $(".imagez").remove();
                $(".link1").append("<img class='imagez' src='http://www.steiffusa.com/imagelibrary//website/homepage/newsite/Picture_02.jpg'/>");
                $(".link1").attr("href", "productlist.aspx?GroupID=1003");
            },
            function () {
                $(".thumbnail").css("opacity", "1.0");
            }
            );
    $(".thumbnail3").hover(
            function () {
                $(".thumbnail1").css("opacity", "0.5");
                $(".thumbnail2").css("opacity", "0.5");
                $(this).animate({ opacity: 1.0 }, 200);
                $(".thumbnail4").css("opacity", "0.5");
                $(".thumbnail5").css("opacity", "0.5");
                $(".imagez").remove();
                $(".link1").append("<img class='imagez' src='http://www.steiffusa.com/imagelibrary//website/homepage/newsite/Picture_03.jpg'/>");
                $(".link1").attr("href", "productlist.aspx?GroupID=1029");
            },
            function () {
                $(".thumbnail").css("opacity", "1.0");
            }
            );
    $(".thumbnail4").hover(
            function () {
                $(".thumbnail1").css("opacity", "0.5");
                $(".thumbnail2").css("opacity", "0.5");
                $(".thumbnail3").css("opacity", "0.5");
                $(this).animate({ opacity: 1.0 }, 200);
                $(".thumbnail5").css("opacity", "0.5");
                $(".imagez").remove();
                $(".link1").append("<img class='imagez' src='http://www.steiffusa.com/imagelibrary//website/homepage/newsite/Picture_04.jpg'/>");
                $(".link1").attr("href", "ProductCollection.aspx?Collection=Plush");
            },
            function () {
                $(".thumbnail").css("opacity", "1.0");
            }
            );
    $(".thumbnail5").hover(
            function () {
                $(".thumbnail1").css("opacity", "0.5");
                $(".thumbnail2").css("opacity", "0.5");
                $(".thumbnail3").css("opacity", "0.5");
                $(".thumbnail4").css("opacity", "0.5");
                $(this).animate({ opacity: 1.0 }, 200);
                $(".imagez").remove();
                $(".link1").append("<img class='imagez' src='http://www.steiffusa.com/imagelibrary//website/homepage/newsite/Picture_05.jpg'/>");
                $(".link1").attr("href", "ProductCollection.aspx?Collection=Baby");
            },
            function () {
                $(".thumbnail").css("opacity", "1.0");
            }
            );
});
