var menu_first_level_container;
$(document).ready(function(){
	menu_first_level_container = $('#menu_first_level_container');
	if(menu_first_level_container.attr('id') != null){
		menu_first_level_container.NavDropDown({
			duration:300,
			hoverElement:'li',
			hoverClass:'hover',
			dropHolder:'div',
			showEffect:'slide'
		});
	}
	$('.second_level_dropdown').mouseover(function(){
		id = $(this).attr('id').replace("li_menu_first_level_", "");
		if((($.client.os == "Windows" && ($.client.browser == "Firefox" || $.client.browser == "Chrome" || $.client.browser == "Safari")) || ($.client.os == "Mac" && ($.client.browser == "Safari" || $.client.browser == "Chrome"))) && id == 2){
			this_width = $(this).width();
		}
		else if(id == 2){
			this_width = $(this).width() - 1;
		}
		else{
			this_width = $(this).width();
		}
		$('#div_menu_first_level_' + id).width(this_width);
	});
});
