$(document).ready(function() {
	var a = new Array();
	var to_tag = 'fr1';
	var to_int = 3000;
	var to_fade = 3000;
	if (location.search.length > 1) {
		var list = location.search.substr(1).split("&");
		for (i in list) {
			a.push(list[i].split("="));
			if(a[i][0]=='jump' && a[i][1]!=""){
				to_tag=a[i][1];
				to_int=50;
				to_fade=500;
			}
		}
	}
	$('#nowLoad').fadeOut(to_fade,function(){
		my=to_tag.substring(2) - 1;
		mx=1;
		if(my == 0){document.getElementById('menu01').src='img_common/menu01_on.gif';}
		else if(my == 1){document.getElementById('menu02').src='img_common/menu02_on.gif';}
		else if(my == 2){document.getElementById('menu03').src='img_common/menu03_on.gif';}
		else if(my == 3){document.getElementById('menu04').src='img_common/menu04_on.gif';}
		else if(my == 4){document.getElementById('menu05').src='img_common/menu05_on.gif';}
		else{document.getElementById('menu01').src='img_common/menu01_on.gif';}
		SmoothScroll.scrollTo(to_tag,'view_window',{time:to_int});
	});

	return false;
});


function set_fontsize(size){
	var s = '100%';

	if(size==null || size==undefined || size=='' ){
		size=fontsize;
	}

	/*alert(size);*/

	if(size=='Small'){
		s='77%';
	} else if(size=='Large'){
		s='108%';
	}
	$('#top_container').css({'font-size':s});
	$('#cor_container').css({'font-size':s});
	$('#news_container').css({'font-size':s});
	$('#external_contents').css({'font-size':s});
	$.cookie('fontsize', size, { expires: 360 });
}

