﻿$(document).ready(function () {

    $(".slideshow").mouseover(function () {
        var overimg = $("#" + this.id);
        overimg.attr("src","images/product" + overimg.attr("alt") + "h.png");
        overimg.animate({ width: 200, height: 145, left: 50 });
    });

    $(".slideshow").mouseout(function () {
        var overimg = $("#" + this.id);
        var duration;
        overimg.animate({ width: 166, height: 120, left: 65 }, duration, function(){
        overimg.attr("src","images/prod" + overimg.attr("alt") + ".png");
        });
        
    });

    $(".docs").mouseover(function () {
        var overimg = $("#" + this.id);
        //overimg.css();
        overimg.animate({ width: 80, height: 100});
    });

    $(".docs").mouseout(function () {
        var overimg = $("#" + this.id);
        overimg.animate({ width: 70, height: 87});
    });

});
