(function($) { 
$(function() {
	// gnb menu
	$("#header").hover(function(){},function(){ 
		$('#header .nav h2 a img').attr('src', function() {return this.src.replace('_on.gif','_off.gif');});
	});
	$('#header .nav h2 a').each(function(index){
		$('#header .nav h2 a').eq(index).bind('focus mouseover',
			function(){
				$('#header .nav h2 a img').eq(index).attr('src', function() {return this.src.replace('_off.gif','_on.gif');});
				$('#header .nav h2 a img:lt('+index+'),#header .nav h2 a img:gt('+index+')').attr('src', function() {return this.src.replace('_on.gif','_off.gif');});
			}
		);
	});
});
})(jQuery);
