// JavaScript Document
<!--

jQuery.noConflict();

jQuery(document).ready(function($){
	//LNB01 È°¼ºÈ­
	if ($('#LNB01 a').hasClass('pix')){
		$LNB01 = $('#LNB01').find('.pix').attr('id');
		$('#'+ $LNB01).children().attr('src','/new/images/01_NDM/'+ $LNB01 +'_ov.jpg'); //LNB01 ·Ñ¿À¹ö
		$LNBS01 = $('#LNB01').find('.pix2').attr('id');
		$('#'+ $LNBS01).children().attr('src','/new/images/01_NDM/'+ $LNBS01 +'_ov.jpg'); //LNB01 ·Ñ¿À¹ö
	}
	
	//LNB02 È°¼ºÈ­
	if ($('#LNB02 a').hasClass('pix')){
		$LNB02 = $('#LNB02').find('.pix').attr('id');
		$LNB02id = $LNB02.substring(1,$LNB02.length);
		$('#'+ $LNB02).children().attr('src','/new/images/02_Education/'+ $LNB02id +'_ov.jpg'); //LNB02 ·Ñ¿À¹ö
		
		if ($('#LNB02 a').hasClass('pix2')){
			$LNBS02 = $('#LNB02').find('.pix2').attr('id');
			$LNBS02id = $LNBS02.substring(1,$LNBS02.length);
			$('#'+ $LNBS02).children().attr('src','/new/images/02_Education/'+ $LNBS02id +'_ov.jpg'); //LNBS02 ·Ñ¿À¹ö
		}
	}
	
	
	//LNB03 È°¼ºÈ­
	if ($('#LNB03 a').hasClass('pix')){
		$LNB03 = $('#LNB03').find('.pix').attr('id');
		$('#'+ $LNB03).children().attr('src','/new/images/03_Workshop/'+ $LNB03 +'_ov.jpg'); //LNB03 ·Ñ¿À¹ö		
	}
	
	
	//LNB05 È°¼ºÈ­
	if ($('#LNB05 a').hasClass('pix')){
		$LNB05 = $('#LNB05').find('.pix').attr('id');
		$('#'+ $LNB05).children().attr('src','/new/images/05_Comm/'+ $LNB05 +'_ov.jpg'); //LNB05 ·Ñ¿À¹ö		
	}
	
	//LNB06 È°¼ºÈ­
	if ($('#LNB06 a').hasClass('pix')){
		$LNB06 = $('#LNB06').find('.pix').attr('id');
		$('#'+ $LNB06).children().attr('src','/new/images/06_Cdata/'+ $LNB06 +'_ov.jpg'); //LNB06 ·Ñ¿À¹ö
		
		if ($('#LNB06 a').hasClass('pix2')){
			$LNBS06 = $('#LNB06').find('.pix2').attr('id');
			$('#'+ $LNBS06).children().attr('src','/new/images/06_Cdata/'+ $LNBS06 +'_ov.jpg'); //LNBS06 ·Ñ¿À¹ö
		}
	}
	
	
	//LNB07 È°¼ºÈ­
	if ($('#LNB07 a').hasClass('pix')){
		$LNB07 = $('#LNB07').find('.pix').attr('id');
		$('#'+ $LNB07).children().attr('src','/new/images/07_Etc/'+ $LNB07 +'_ov.jpg'); //LNB07 ·Ñ¿À¹ö		
	}
	
	
	
	
// LNB01
	$('#LNB01 a').hover(function(){
		$id = this.id;
		$(this).children().attr('src','/new/images/01_NDM/'+ $id +'_ov.jpg');
	},function(){
		if(!( $(this).hasClass('pix')|| $(this).hasClass('pix2'))){
			$(this).children().attr('src','/new/images/01_NDM/'+ $id +'_on.jpg');
		}
	});
	
	$('#LNB02 a').hover(function(){
		$Lengh = this.id.length;
		$id = this.id.substring(1,$Lengh); 
		$(this).children().attr('src','/new/images/02_Education/'+ $id +'_ov.jpg');
	},function(){
		if(!( $(this).hasClass('pix')|| $(this).hasClass('pix2'))){
			$(this).children().attr('src','/new/images/02_Education/'+ $id +'_on.jpg');
		}
	});
	
	$('#LNB03 a').hover(function(){
		$id = this.id;
		$(this).children().attr('src','/new/images/03_Workshop/'+ $id +'_ov.jpg');
	},function(){
		if(!( $(this).hasClass('pix')|| $(this).hasClass('pix2'))){
			$(this).children().attr('src','/new/images/03_Workshop/'+ $id +'_on.jpg');
		}
	});
	
	$('#LNB05 a').hover(function(){
		$id = this.id;
		$(this).children().attr('src','/new/images/05_Comm/'+ $id +'_ov.jpg');
	},function(){
		if(!( $(this).hasClass('pix')|| $(this).hasClass('pix2'))){
			$(this).children().attr('src','/new/images/05_Comm/'+ $id +'_on.jpg');
		}
	});
	
	$('#LNB06 a').hover(function(){
		$id = this.id;
		$(this).children().attr('src','/new/images/06_Cdata/'+ $id +'_ov.jpg');
	},function(){
		if(!( $(this).hasClass('pix')|| $(this).hasClass('pix2'))){
			$(this).children().attr('src','/new/images/06_Cdata/'+ $id +'_on.jpg');
		}
	});
	
	$('#LNB07 a').hover(function(){
		$id = this.id;
		$(this).children().attr('src','/new/images/07_Etc/'+ $id +'_ov.jpg');
	},function(){
		if(!( $(this).hasClass('pix')|| $(this).hasClass('pix2'))){
			$(this).children().attr('src','/new/images/07_Etc/'+ $id +'_on.jpg');
		}
	});
	
});
	
//-->
	
	
