﻿// JScript File
$(function(){
    curvyCorners(rd10, '#homeContent');
    $('.menu-content').hide();//HIDES ALL DROPDOWN ON PAGE LOAD
    $('#homeContent').show();
    
    
    
    $('#isthisKit').hide();
    /**********************************
    Menu FUNCTIONS
    **********************************/
    $('li.menu').mouseenter(function(){
        var strW = $(this).width();
        var strO = $(this).offset();
        var strL = strO.left;
        var strT = strO.top;
        strT = strT+29;
        strL = strL+20;
        if($.browser.msie){
            strL = strL;
        }

        
        var strID =  $(this).attr('id'); 
        //alert("POS: "+strL+ "-"+strT);
        $('.menu-content').removeClass('visible').addClass('hidden').hide();
       
        $('#menu_'+strID).css({top:strT,left:strL}).removeClass('hidden').addClass('visible').show();
    });
   $('.menu-content').mouseleave(function(){
    $(this).hide();
   }); 
   /**************************************
   END MENU FUNCTIONS
   **************************************/

 
});

