if(window.attachEvent){
	window.attachEvent('onload', init);
}
else{
	window.addEventListener('load', init, false);
}

function init(){

	$(".slideshow").css("visibility","visible");

    $(".slideshow").cycle({
			speed:   3000,
			timeout: 5000,
			startingSlide: 3,
			fx:"fade",
			easing:'easeOutExpo'
//			before:onBefore,
//			after:onAfter
	});

	$("#toPartner img").hover(on,out);
	$("#myCatch").hover(on2,out2);


}

function on(){
	this.src = "./images/partnerBtnHover.png";
}

function out(){
	this.src = "./images/partnerBtn.png";
}

function on2(){
	this.style.filter = "alpha(opacity=100)";
	this.style.opacity = "1";
}

function out2(){
	this.style.filter = "alpha(opacity=60)";
	this.style.opacity = "0.6";
}

function onBefore(){
	$('#myCatch p span').html("すべてのテクノロジーに安心と安全を。"); 

}


function onAfter(){
$('#myCatch p span').html("すべてのテクノロジーに安心と安全を。<br />").append(this.alt); 

}





//blindX
//blindY
//blindZ
//cover
//curtainX
//curtainY
//fade
//fadeZoom
//growX
//growY
//scrollUp
//scrollDown
//scrollLeft
//scrollRight
//scrollHorz
//scrollVert
//shuffle
//slideX
//slideY
//toss
//turnUp
//turnDown
//turnLeft
//turnRight
//uncover
//wipe
//zoom

