﻿//use this script to control the $ready everywhere (this is only applied to the store not the admin-site)
$(document).ready(function () {
    $("#navmenu-v li").hover(
    function () { $(this).addClass("iehover"); },
    function () { $(this).removeClass("iehover"); }
    );    
});
