﻿// JavaScript Document
$(document).ready(function(){
						   
   $("ul#topNav li.menu01").hover(
					   function(){
						   
						   $(this).css({ 'background' : 'url(/images/menu_l01_on.gif) left top no-repeat'});
						   $(this).children("div.newSubNav").show();},
					   function(){
						   $(this).css({ 'background' : 'url(/images/menu_l01.gif) left top no-repeat'});
						   $(this).children("div.newSubNav").hide();}
					   );
					   
					   
   $("ul#topNav li.menu02").hover(
					   function(){
						   
						   $(this).css({ 'background' : 'url(/images/menu_l02_on.gif) left top no-repeat'});
						   $(this).children("div.newSubNav").show();},
					   function(){
						   $(this).css({ 'background' : 'url(/images/menu_l02.gif) left top no-repeat'});
						   $(this).children("div.newSubNav").hide();}
					   );
										   
   $("ul#topNav li.menu03").hover(
					   function(){
						   
						   $(this).css({ 'background' : 'url(/images/menu_l03_on.gif) left top no-repeat'});
						   $(this).children("div.newSubNav").show();},
					   function(){
						   $(this).css({ 'background' : 'url(/images/menu_l03.gif) left top no-repeat'});
						   $(this).children("div.newSubNav").hide();}
					   );
					   
   $("ul#topNav li.menu04").hover(
					   function(){
						   
						   $(this).css({ 'background' : 'url(/images/menu_l04_on.gif) left top no-repeat'});
						   $(this).children("div.newSubNav").show();},
					   function(){
						   $(this).css({ 'background' : 'url(/images/menu_l04.gif) left top no-repeat'});
						   $(this).children("div.newSubNav").hide();}
					   );
					   
   $("ul#topNav li.menu05").hover(
					   function(){
						   
						   $(this).css({ 'background' : 'url(/images/menu_l05_on.gif) left top no-repeat'});
						   $(this).children("div.newSubNav").show();},
					   function(){
						   $(this).css({ 'background' : 'url(/images/menu_l05.gif) left top no-repeat'});
						   $(this).children("div.newSubNav").hide();}
					   );	
					   
   $("ul#topNav li.menu06").hover(
					   function(){
						   
						   $(this).css({ 'background' : 'url(/images/menu_l06_on.gif) left top no-repeat'});
						   $(this).children("div.newSubNav").show();},
					   function(){
						   $(this).css({ 'background' : 'url(/images/menu_l06.gif) left top no-repeat'});
						   $(this).children("div.newSubNav").hide();}
					   );		
						 
		$("ul#topNav li.menu02 .tab li").each(function(i){
				var _this=$(this);
				_this.bind('mouseenter',function(){
					if(_this.hasClass('selected')) return;
					else{
						$("ul#topNav li.menu02 .tab li").removeClass('selected');
						_this.addClass('selected');	
						$("ul#topNav li.menu02 .con").hide();
						$("ul#topNav li.menu02 .con").eq(i).show();
					}
			})	
		})			   				   					   
})
