﻿var subMenuShowing = false;

$(function() {
    $("#store_morecategories_parent").hover(function() {
        $("#store_subcategories").slideUp("fast");
        var pos = $(this).position();
        $("#store_morecategories").css({ "left": pos.left + "px", "top": pos.top + $(this).height() + "px", "position": "absolute" });
        $("#store_morecategories").slideDown("fast");
    }, function() {

    });

    $("#store_morecategories").hover(function() {
        subMenuShowing = true;
    }, function() {
        $("#store_morecategories").slideUp("fast");
        subMenuShowing = false;
    });

    $("#store_subcategories_parent").hover(function() {
        $("#store_morecategories").slideUp("fast");
        var pos = $(this).position();
        $("#store_subcategories").css({ "left": pos.left + "px", "top": pos.top + $(this).height() + "px", "position": "absolute" });
        $("#store_subcategories").slideDown("fast");
    }, function() {

    });

    $("#store_subcategories").hover(function() {
        subMenuShowing = true;
    }, function() {
        $("#store_subcategories").slideUp("fast");
        subMenuShowing = false;
    });

    $(".ProductDetailImage").hover(function() {
        $(this).animate({ "width": "320px", "height": "320px" }, "fast");
        $(this).children('img').animate({ "width": "300px", "height": "300px" }, "fast");
    }, function() {
        $(this).animate({ "width": "200px", "height": "200px" }, "fast");
        $(this).children('img').animate({ "width": "180px", "height": "180px" }, "fast");
    });
}); 
