$(document).ready(function(){
	/* --------------------------------
		navigation menu settings
	-------------------------------- */
	$(function(){
		$('#globalNavi img').hover(function(){
			$(this).attr('src', $(this).attr('src').replace('_off', '_on'));
		},
		function(){
			if (!$(this).hasClass('currentPage')) {
				$(this).attr('src', $(this).attr('src').replace('_on', '_off'));
			}
		});
	});
	
	if($.browser.msie && 960 < $(window).width()){
		//alert($(window).width());
		$('body').css({'overflow-x':'hidden'});
	}
});
