$(document).ready(function(){						   var exitmenu = '';						   	$('#green_menu_box').hover(function() {										$('#green_menu_dropdown').css({											'left': $('#green_menu_box').position().left,											'top': $('#green_menu_box').position().top+25,											'width': $('#green_menu_box').width()-20											});									setTimeout(function() {$('#green_menu_dropdown').slideDown('fast');},100);														   },function(){										// hide menu										exitmenu = setTimeout(function() {$('#green_menu_dropdown').slideUp('fast');},300);														   });	$('#green_menu_dropdown').hover(function() {										 // enter the drop down area.  Kill the hide it timer.									clearTimeout(exitmenu)																							   },function(){										// hide menu										exitmenu = setTimeout(function() {$('#green_menu_dropdown').slideUp('fast');},300);														   });				$('#red_menu_box').hover(function() {									  $('#red_menu_dropdown').css({										'left': $('#red_menu_box').position().left,										'top': $('#red_menu_box').position().top+25,										'width': $('#red_menu_box').width()-20										});									setTimeout(function() {$('#red_menu_dropdown').slideDown('fast');},100);														   },function(){										// hide menu										exitmenu = setTimeout(function() {$('#red_menu_dropdown').slideUp('fast');},300);														   });	$('#red_menu_dropdown').hover(function() {										 // enter the drop down area.  Kill the hide it timer.									clearTimeout(exitmenu)																							   },function(){										// hide menu										exitmenu = setTimeout(function() {$('#red_menu_dropdown').slideUp('fast');},300);														   });				$('#orange_menu_box').hover(function() {										 $('#orange_menu_dropdown').css({											'left': $('#orange_menu_box').position().left,											'top': $('#orange_menu_box').position().top+25,											'width': $('#orange_menu_box').width()-20											});									setTimeout(function() {$('#orange_menu_dropdown').slideDown('fast');},100);														   },function(){										// hide menu										exitmenu = setTimeout(function() {$('#orange_menu_dropdown').slideUp('fast');},300);														   });	$('#orange_menu_dropdown').hover(function() {										 // enter the drop down area.  Kill the hide it timer.									clearTimeout(exitmenu)																							   },function(){										// hide menu										exitmenu = setTimeout(function() {$('#orange_menu_dropdown').slideUp('fast');},300);														   });				$('#blue_menu_box').hover(function() {									   $('#blue_menu_dropdown').css({								'left': $('#blue_menu_box').position().left,								'top': $('#blue_menu_box').position().top+25,								'width': $('#blue_menu_box').width()-20								});									setTimeout(function() {$('#blue_menu_dropdown').slideDown('fast');},100);														   },function(){										// hide menu										exitmenu = setTimeout(function() {$('#blue_menu_dropdown').slideUp('fast');},300);														   });	$('#blue_menu_dropdown').hover(function() {										 // enter the drop down area.  Kill the hide it timer.									clearTimeout(exitmenu)																							   },function(){										// hide menu										exitmenu = setTimeout(function() {$('#blue_menu_dropdown').slideUp('fast');},300);														   });				  });
