﻿/*

	text size

*/
		jQuery(document).ready( function() {
			
			jQuery( "#textsize a" ).textresizer({
				target: "#container,#footer,#h_root_container",
				sizes: [ "70%", "small", "large" ],
				selectedIndex: 1
			});
			
		});


/*

	select search

*/


	function navi(obj) {
	 url = obj.options[obj.selectedIndex].value;
	 if(url != "") {
	   location.href = url;
	  }
	}
