// JavaScript Documentvar $team_height = 0;
var $product_height = 0;
var $product_timer = null;
var $isIE = false;
$(document).ready( function(){
	$team_height = $('#team_dropdown').height();
    $product_height = $('#product_dropdown').height();
    $('.dropdown').css("display", "none" ).css("z-index", 50);

    $('#products-hotspot').mouseenter( function(){
        if( $product_timer != null ){
            clearTimeout( $product_timer );
        }
        if( $('#product_dropdown').css("display") == "none" ){
            $('#product_dropdown').show();
            
        }
    });

    $('#products-hotspot').mouseleave( function(){
        $product_timer = setTimeout("$('#product_dropdown').hide()",125 );
    });

    $('#product_dropdown').mouseenter( function(){
        if( $product_timer != null ){
            clearTimeout( $product_timer );
        }
    });

    $('#product_dropdown').mouseleave( function(){
        $product_timer = setTimeout("$('#product_dropdown').hide()",125 );
    });

});

