/* --------------- Menu Setup ----------------- */
var sepMnKem = 0;
var sepKem = 0;
$(document).ready(function(){
    
	$("#mainMn").hover(
		function(){			
			sepMnKem = 1;
		},
		function(){						
			sepMnKem = 0;
			sepKem = 0;	
			$("#buscContId_1").hide();
		}
	);
	
	$(".mainMn_1").hover(
		function(){
			$("#sub_1").slideDown(100); 			
			$("#buscContId_1").show();
			sepKem = 1;			
		},
		function(){
			$("#sub_1").slideUp(100);
			
		}
	);		
	$(".mainMn_2").hover(
			function(){
				$("#sub_2").slideDown(100); 			
				$("#buscContId_1").show();
				sepKem = 1;			
			},
			function(){
				$("#sub_2").slideUp(100);
				
			}
	);		
	$("#mnSepId").hover(
		function(){			
			if(sepMnKem == 1 && sepKem == 1){
				$("#buscContId_1").show();			
			}
		},
		function(){			
		}
	);
	$(".mainMn_5").hover(
		function(){
			$("#sub_5").slideDown(100);			
			$("#buscContId_1").show();
			sepKem = 1;
		},
		function(){
			$("#sub_5").slideUp(100);
			
		}
	);			
	$(".mainMn_3,.mainMn_4").mouseover(
		function(){
			$("#buscContId_1").hide();
		}
	);

			
	$('.mainMn_1').hover(
		function(){
			
			$(".mnItem_1").css({
				'border-top' : '1px solid #b9b0b0', 
				'border-left' : '1px solid #b9b0b0',
				'border-right' : '1px solid #b9b0b0',
				'background-color' : '#FFF',
				'color' : '#ee7c00'
			});
		},
		function(){			
			$(".mnItem_1").css({
				'border' : 'none', 
				'background' : 'none',
				'color' : '#000000'
			});
		}
	);
	$('.mainMn_5').hover(
		function(){
			
			$(".mnItem_5").css({
				'border-top' : '1px solid #b9b0b0', 
				'border-left' : '1px solid #b9b0b0',
				'border-right' : '1px solid #b9b0b0',
				'background-color' : '#FFF',
				'color' : '#ee7c00'
			});
		},
		function(){			
			$(".mnItem_5").css({
				'border' : 'none', 
				'background' : 'none',
				'color' : '#000000'
			});
		}
	);	

	
	//$('#sub_1,#sub_5,#buscContId_1').bgiframe({ height: 2000 });
	
});
