/*==============================================================================
(C)2010 Yezhoff Oleg (yezhoff@ya.ru)
==============================================================================*/


/*==============================================================================
ready
==============================================================================*/
$(document).ready(function()
	{



$('#menu a').mouseenter(function(){
  $(this).next('.submenu').show();
})

$('#menu .submenu').mouseenter(function(){
  $(this).show();
})


$('#menu a').mouseleave(function(){
  $(this).next('.submenu').hide();
})

$('#menu .submenu').mouseleave(function(){
  $(this).hide();
})



/*==============================================================================
hide / show div
 ==============================================================================*/
		$('.show').click(function()
			{
			  $(this).toggleClass("active");
				$(this).next('.hidden').slideToggle();
				return false;
			}
		);








		/*==============================================================================
  ********************************************************************************
  ==============================================================================*/
		//end of ready
	}
);
/*==============================================================================
********************************************************************************
==============================================================================*/

