// JavaScript Document
$(document).ready(function ()
		        {
						
						$('#programs_btn').mouseover(function()
		                        {
										$('#programs_dd').animate( { opacity: 'show', height: 'show' }, 500 );
										$('#programs_btn').css({'background-color' : '#4a0d06', 'text-decoration' : 'none'});
								if(typeof dropdown1_timer != 'undefined' && dropdown1_timer) {
                        clearTimeout(dropdown1_timer)
                        dropdown1_timer = null
                				}
		                        });
						$('#programs_btn').click(function()
		                        {
										$('#programs_dd').animate( { opacity: 'show', height: 'show' }, 500 );
										$('#programs_btn').css({'background-color' : '#4a0d06', 'text-decoration' : 'none'});
								if(dropdown1_timer) {
                        clearTimeout(dropdown1_timer)
                        dropdown1_timer = null
                				}
		                        });
		                $('#programs_btn').mouseout(function()
		                        {
									dropdown1_timer = setTimeout(function () { $('#programs_dd').animate( { opacity: 'hide', height: 'hide' }, 500 ); $('#programs_btn').css({'background-color' : '#601109', 'text-decoration' : 'none'});  }, 1000);
		                        });
						$('#programs_dd a').mouseover(function()
		                        {
		                               if(dropdown1_timer) {
                        clearTimeout(dropdown1_timer)
						$('#programs_btn').css({'background-color' : '#4a0d06', 'text-decoration' : 'none'});
                        dropdown1_timer = null
                }
		                        });
		                $('#programs_dd a').mouseout(function()
		                        {
									dropdown1_timer = setTimeout(function () { $('#programs_dd').animate( { opacity: 'hide', height: 'hide' }, 500 );  $('#programs_btn').css({'background-color' : '#601109', 'text-decoration' : 'none'});  }, 1000);
		                        });
						
						/*$('#promotions_btn').mouseover(function()
		                        {
										$('#promotions_dd').animate( { opacity: 'show', height: 'show' }, 500 );
										$('#promotions_btn').css({'background-color' : 'rgba(0,0,0,0.2)', 'text-decoration' : 'none'});
										if(nav_timer2) {
                        clearTimeout(nav_timer2);
                        nav_time2r = null
                }
		                        });
		                $('#promotions_btn').mouseout(function()
		                        {
									nav_timer2 = setTimeout(function () { $('#promotions_btn').css({'background-color' : 'rgba(0,0,0,0)', 'text-decoration' : 'none'}); $('#promotions_dd').animate( { opacity: 'hide', height: 'hide' }, 500 ); }, 1000);
		                        });
						$('#promotions_dd a').mouseover(function()
		                        {
		                               if(nav_timer2) {
                        clearTimeout(nav_timer2);
						$('#promotions_btn').css({'background-color' : 'rgba(0,0,0,0.2)', 'text-decoration' : 'none'});
                        nav_timer2 = null
                }
		                        });
		                $('#promotions_dd a').mouseout(function()
		                        {
									nav_timer2 = setTimeout(function () { $('#promotions_btn').css({'background-color' : 'rgba(0,0,0,0)', 'text-decoration' : 'none'}); $('#promotions_dd').animate( { opacity: 'hide', height: 'hide' }, 500 ); }, 1000);
		                        });*/
						
		});