//대교 및 브랜드 전체공통 (GNB 부분)
$(document).ready(function(){

	//풋터
	$('#brand_link').click(function(){
		
	    if(!document.getElementById("brandSiteLayer")) {
	        $("#footer_brand").load("/brandSiteLayer.htm");
	    }
		$('#footer_brand').show();
		$('#footer_site').hide();
		 return false;
	});

	$('#site_link').click(function(){
		
	    if(!document.getElementById("footerSiteLayer")) {
	        $("#footer_site").load("/footerSiteLayer.htm");
	    }
		$('#footer_brand').hide();
		$('#footer_site').show();
		 return false;
	});

	$('div.footer_link p.close a').click(function(){
		$('div.footer_link').hide();
		 return false;
	});

	$('div.site_link img').hover(
		function(){
			this.src=this.src.replace('_off','_on');
		},	
		function(){
			this.src=this.src.replace('_on','_off');
		}	
	);

	$('div.footer_link ul li img').hover(
		function(){
			this.src=this.src.replace('_off','_on');
		},	
		function(){
			this.src=this.src.replace('_on','_off');
		}	
	);

});



