$(function(){
	/*画像フェード*/
	$(".fade, #commonArea a img, #contents a img").hover(
		function(){
			$(this).fadeTo(200, 0.5);
		},
		function(){
			$(this).fadeTo(200, 1.0);
		}
	);
});


/*iframe自動可変
    function GetHeight(Y,main)
    {
        var app = navigator.appName.charAt(0);
        if(navigator.userAgent.indexOf('Safari') != -1){
            document.getElementById(Y).height = parent.frames[main].document.body.scrollHeight + 80;
        }else if (app == "N")
        {
            document.getElementById(Y).height = parent.frames[main].document.height +80;
        }
        else
        {
            document.getElementById(Y).height = parent.frames[main].document.body.scrollHeight + 80;
        }
    }*/