﻿/// <reference path="jquery-1.3.2-vsdoc2.js" />
$(document).ready(function() {
    //adds the shadow to the product detail large image
    if ($.browser.msie && $.browser.version == '6.0') {
        return;
    }
    
    $(".large-image-container").wrap("<div class='wrap1'><div class='wrap2'>" +
     "<div class='wrap3'></div></div></div>");
    var typeField = $(".file-type");
    if (typeField.val() != undefined) {
        $(".large-image").css("margin-bottom", "35px");
        var typeValue = typeField.val();
        typeValue = typeValue.replace(".", "");
        $("#" + typeValue).show();
    }

});

