$(document).ready(function(){	
	//slideshow
	var objSlideShow = new slideShow();
	objSlideShow.parentId = "wrapimgFrame";
	objSlideShow.naviPos = 534;
	
	//Image01
	objSlideShow.set(
		{//main image
			url:'images/top/main01.jpg'
		},
		{//text
			url:'images/top/text01.png',
			width:'288px',height:'82px',
			alt:'Keeping an Eye on the Sun / Hinode. The integration of sophisticated solar observation instruments and satellite technology is helping to reveal the mysteries of the Sun.'
		},
		{//more
			url:'images/top/bt_more.png',
			width:'78px',
			height:'78px',
			alt:'More',
			link:'/keytechnologies/hinode/',
			target:''
		},
		{iniX:0,iniY:0,x:0,y:-100} //animation
	);
	
	//Image02
	objSlideShow.set(
		{//main image
			url:'images/top/main02.jpg'
		},
		{//text
			url:'images/top/text02.png',
			width:'269px',
			height:'96px',
			alt:"Replicating Space on Earth / Japan's only manufacturer with integrated satellite manufacturing technology replicates the harsh environment of space on earth to create reliable satellites."
		},
		{//more
			url:'images/top/bt_more.png',
			width:'78px',
			height:'78px',
			alt:'More',
			link:'/keytechnologies/satellites/',
			target:''
		},
		{iniX:-100,iniY:0,x:0,y:0}
	);
	
	objSlideShow.start();
});