﻿var dif =  10;
 var ua = navigator.userAgent.toLowerCase();
  // Определим Internet Explorer
  if (ua.indexOf("msie") != -1 && ua.indexOf("opera") == -1 && ua.indexOf("webtv") == -1) {
    dif = 0;
  }
function setCenter()
{
	var block_1 = document.getElementById('dropdownmenu').offsetWidth;
	var block_2 = document.getElementById('MenuUl').offsetWidth - 22;
	document.getElementById('MenuUl').style.paddingLeft = ((block_1-block_2)/2)+'px';
}
$(function() {
setCenter();
    $('.dropdownmenu>ul>li').hover(
        function(e) {
            var x = $(this).offset().left;
            var y = $(this).offset().top + $(this).outerHeight();

		        x= x +20;

            $(this)
                .find('ul')
                .eq(0)
                .css('left',x + 'px')
                .css('top',y + 'px')
                .show();   
        },
        
        function(e) {
            $(this)
               .find('ul')
               .eq(0)
               .hide();        
        }
    );
    
    $('.dropdownmenu>ul>li>ul>li').hover(
        function(e) {
            var top = $(this).position().top ;
            var left = $(this).outerWidth();

		        left = left + dif;
           

            $(this)
                .find('ul')
                .eq(0)
                .css('left', left + 'px')
                .css('top', top + 'px')
                .show();
        }, 
        function(e) {
            $(this)
                .find('ul')
                .eq(0)
                .hide();
        });
});