$(function (){

	$(".func").attr("style", 'filter: alpha(opacity=0)');

	$(".func").attr("style", 'opacity: 0');



	$(".func").fadeTo("slow", 1);

});



$(function (){

//	$(".func").fadeTo("slow", 1);

});



//ポップアップウィンドウ

$(function(){

		   $(".ExNW").click(function(){

					 	newWindow($(this).attr("href"));

						return false;

						})

});



function newWindow( url ){

	var navWindow;

	if(!navWindow || navWindow.closed){

		navWindow = window.open( url , "icc" , "width=320,height=535,scrollbars=yes,status=no,resizable=yes");

		self.status = "";

	}else{

		navWindow.location.href = url;

	}

	navWindow.focus();

}

// オリジナルは「height=408」



$(function(){

	var $thisURL = String(location);

	if($thisURL.match("index")){

		return false;

	}else{

		if(window.name == "icc"){

		$("#exheader_cover").css("display","none");

		$("h1").css("display","none");

		$("#ExDetail").css("width","280px");

		$("#ExDetail").css("margin-left","auto");

		$("#ExDetail").css("margin-right","auto");

		}

	}

});




