/*
	Trifolion Main Navigation
*/

$(document).ready(function() {
	
	$('.tab').mouseenter(function() {
  		$(this).find('.tab_content').fadeIn(100);
  		$(this).find('.tab_label').css('background-color', '#978580');
	});
	
	$('.tab').mouseleave(function() {
		
		if($(this).find('.tab_label').attr('class').match(/tab_label_active/)){
			$(this).find('.tab_content').fadeOut(10);			
		}else{
			$(this).find('.tab_content').fadeOut(10);	
  			$(this).find('.tab_label').css('background-color', 'transparent');
		}	
  		
	});
	
});
