﻿$(document).ready(function(){
    var image;
    var bredd = 0;
    $('ul.productImgList li').each(function() {
        bredd += $(this).width()+6;
    });
    $('ul.productImgList').css({'width': bredd+'px'});

    $('div#contentright ul.productImgList li').hover(
        function() {
            $(this).css({'z-index' : '10'});
            $(this).find('img').css({'z-index' : '10'}).stop()
                .animate({
                    top: '-24px',
                    left: '-5px',
                    width: '84px',
                    height: '364px'
                }, 200);
        },function() {
            $(this).css({'z-index' : '1'});
            $(this).find('img').css({'z-index' : '1'}).removeClass('hover').stop()
                .animate({
                    top: '0px',
                    left: '0',
                    width: '76px',
                    height: '329px'
                }, 200);
    });
    
    $('div#submenu ul li').hover(
        function() {
            image = 'ul.productImgList li.'+$(this).attr("class");
            $(image).css({'z-index' : '10'});
            $(image).find('img').css({'z-index' : '10'}).stop()
                .animate({
                    top: '-24px',
                    left: '-5px',
                    width: '84px',
                    height: '364px'
                }, 200);
        },function() {
            $(image).css({'z-index' : '1'});
            $(image).find('img').css({'z-index' : '10'}).removeClass('hover').stop()
                .animate({
                    top: '0px',
                    left: '0',
                    width: '76px',
                    height: '329px'
                }, 200);
    });
    
});