


/*ロールオーバー*/
jQuery(document).ready(function($) {
	var postfix = '_on';
	$(' a img.over').not('[src*="'+ postfix +'."]').each(function() {
		var img = $(this);
		var src = img.attr('src');
		var src_on = src.substr(0, src.lastIndexOf('.'))
		           + postfix
		           + src.substring(src.lastIndexOf('.'));
		$('<img>').attr('src', src_on);
		img.hover(
			function() {
				img.attr('src', src_on);
			},
			function() {
				img.attr('src', src);
			}
		);
	});
});



/*ポップアップwindow*/
var profiles =
{

	window800:
	{
		height:800,
		width:800,
		status:1
	},

	window200:
	{
		height:200,
		width:200,
		status:1,
		resizable:0
	},

	windowCenter:
	{
		height:300,
		width:400,
		center:1
	},
	
	windowNotNew:
	{
		height:300,
		width:400,
		center:1,
		createnew:0
	}

};


$(function()
{
	$(".popupwindow").popupwindow(profiles);
});


//アコーディオン

function  showfaq(val){
	$("#queaco"+val).toggleClass("nobg");
	$("#aco"+val).slideToggle();
	}
