(function($) {
	$(function() {
		/*TOP MENU*/
		var inSomething = false;
		$('.menu_cellWrap').mouseover(function(){
			$('.float_top_menu').hide();
			$('.line_top_menu').hide();
			if($(this).find('.float_top_menu')){
				var float_menu = $(this).find('.float_top_menu');
				float_menu.show();
			}else if($(this).find('a').attr('rel') == 'line'){
				$('.line_top_menu').show();
			}
			inSomething = true;
		}).mouseout(function(event){
			var $hide = $(this).children('.float_top_menu');
			inSomething = false;
			setTimeout(function() {
				if(!inSomething) {
					$hide.hide();
				}
			}, 100);
		});
		
		
		
		$('.top_menu_button').bind('mouseover', function(){
			if($(this).attr('rel') == 'line'){
				$('.line_top_menu').show();
			}
		});
		
		$('.bottom_top_menu').bind('mouseout', function(){
			$('.line_top_menu').hide();
		});
	});
}(jQuery));


