﻿/// <reference path="../jquery-1.3.2.min-vsdoc.js" />
$(document).ready(function() {
    $('#products tr').mouseenter(function() {
        $("td", this).css("background-color", "#F6F6F6");
        var model = $("td:first-child a", this).html();
        $.post("/equipment/hascutout?modelid=" + model, function(data) {
            url = "<img src=\"/content/images/missingcutout.jpg\" alt=\"missing\" />";
            if (data == "true") 
                url = "<img src=\"/content/models/" + model + "/cutout.jpg\" alt=\"" + model + "\" />";
            
            $("#product-preview").html(url);
        });
    });
    $('#products tr').mouseleave(function() {
        $("td", this).css("background-color", "#FFFFFF");
        $("#product-preview").html("");
    });
});

