/*****************************************
 * CUSTOM JS FOR Maria Del Mar Sacasa's WEBSITE 
 * Author: Paul Thompson
 * Date: April 2011
 *
 * REQUIRES JQUERY (Built using 1.4.2)
 * Utilizes Jquery Colorbox for modals
 * 
 * ***********************************************/

/* MDMS Namespaced JS */
var mdms = {
    "open_timer":null,
    "close_timer":null,
    open_submenu:function(the_id){
        clearTimeout(self.close_timer);
        self.open_timer = setTimeout(function(){
            $("#"+the_id).show();
        },
        100);
    },
    close_submenu:function(the_id){
        clearTimeout(self.open_timer);
        self.close_timer = setTimeout(function(){
          $("#"+the_id).hide();   
        }, 300);
    }
    
}
/* END NAMESPACED */



/***************************************/



/* JQUERY ON LOAD */
$(function(){
    //hide main subnavs
    $(".main-sub").hide();
    
    $("#search-link").click(function(){
        $("#searchform").submit();
        return false;
    });
    
    $(".parent").click(function(){
        var id = this.id.split("-")[1]
        if($("#sub-"+id).length > 0)
        {
            mdms.open_submenu("sub-"+id);
        }
    })
    
    $(".parent").mouseleave(function(){
        var id = this.id.split("-")[1]
        if($("#sub-"+id).length > 0)
        {
            mdms.close_submenu("sub-"+id);
        }
    })
});
