var fsize = $.cookie('fsize');

function prolist(){
	$('#pro1 dl, #pro2 dl').height(23+($('#pro5 dl').height()+$('#pro6 dl').height()));
	$('#pro3 dl').height($('#pro5 dl').height());
	$('#pro4 dl').height($('#pro6 dl').height());
}

$(function(){

$('#banner_list a[href$="post-13.html"]').parent().css('display','none');

	$('#print_btn').click(
	function() {
		window.print();
	});

	$('#small').click(
	function() {
		$('#util_btn li').removeClass('active');
		$(this).addClass('active');
		$('#contents').css('font-size','1em');//bodyのfont-sizeを変更。
		$.cookie("fsize",'1em', {expires: 365, path: '/'});//cookieに「fsize=12px」として保存
		prolist();
		return false;
	});

	$('#middle').click(
	function() {
		$('#util_btn li').removeClass('active');
		$(this).addClass('active');
		$('#contents').css('font-size','1.3em');
		$.cookie("fsize",'1.3em', {expires: 365, path: '/'});
		prolist();
		return false;
	});

	$('#large').click(
	function() {
		$('#util_btn li').removeClass('active');
		$(this).addClass('active');
		$('#contents').css('font-size','1.5em');
		$.cookie("fsize",'1.5em', {expires: 365, path: '/'});
		prolist();
		return false;
	});

	$('#sub a[href$=".pdf"]').not('a[href$="j_all.pdf"]').addClass('pdf').append('<img src="/images/icon/pdf_icon.gif" alt="" />');

	$('a[href$=".pdf"]').click(function (){
		window.open(this.href, '_blank');
		return false;
	});

	$('#company_intro .popup_map, #network_index .popup_map').click(function(){$(this).colorbox();});

	$('#company_outline a.popup_map').click(function (){
		window.open(this.href, '_blank','width=650,height=650,scrollbars=yes');
		return false;
	});


});

$(window).load(function(){

if(fsize != null) {
//	alert(fsize);
	if(fsize == "1em") {
		$('#small').trigger('click');
	}
	if(fsize == "1.3em") {
		$('#middle').trigger('click');
	}
	if(fsize == "1.5em") {
		$('#large').trigger('click');
	}
}
else {
	$('#small').trigger('click');
}
prolist();
});
