// JavaScript Document

	
		/*  Column2 Height  */
	$(document).ready(function() {
		var contentHeight = $('.content').attr('clientHeight')-1;
		$('.content .col2').css('height',contentHeight);
	});
	
		/*  Column1 Height  */
	$(document).ready(function() {
		var contentHeight = $('.content').attr('clientHeight')-1;
		if ($('.content .col1').attr('clientHeight') < $('.content .col2').attr('clientHeight')) {
				if ($.browser.msie) {
					$('.content .col1').css('height',$('.content .col2').attr('clientHeight')-1);
					}
				else {
					$('.content .col1').css('height',$('.content .col2').attr('clientHeight'));
					}
			}
	});
	
	
	/*  Navi HOVER  */
	$(document).ready(function() {
		$('.navi li').each( function() {
				$(this).mouseover( function() {
							$(this).find('a.main').css('display','none');
							$(this).find('a.hover').css('display','block');
					});
				$(this).mouseout( function() {
							$(this).find('a.main').css('display','block');
							$(this).find('a.hover').css('display','none');
					});
			});
	});