$(function(){
	var $oe_menu		= $('#oe_menu');
	var $oe_menu_items	= $oe_menu.children('li');

	$oe_menu_items.bind('click',function(){
		var $this = $(this);
		$this.children('img').attr('src', '_Images/site/arrow_up.png');
		$this.addClass('slided selected');
		$this.css('height', '41px');
		$this.children('div').css('z-index','9999').stop(true,true).fadeIn(300);
	}).bind('mouseleave',function(){
		var $this = $(this);
		$this.children('img').attr('src', '_Images/site/arrow_down.png');
		$this.css('height', '0');
		$this.removeClass('selected').children('div').css('z-index','9999').fadeOut(300);
	});
	
	$oe_menu_items.children('div').bind('mouseenter', function(){
		var $this = $(this);
		$this.children('img').attr('src', '_Images/site/arrow_up.png');
		$this.css('z-index','9999').stop(true,true).show();
		$this.removeClass('selected').children('div').css('z-index','9999').fadeOut(300);
	});
	
});


