// JavaScript Document
var flashyshow=new flashyslideshow({ //create instance of slideshow
	wrapperid: "myslideshow", //unique ID for this slideshow
	wrapperclass: "flashclass", //desired CSS class for this slideshow
	imagearray: [
		["images/rotating_photos/7_ha.jpg", "", "", ""],
		["images/rotating_photos/1_eg.jpg", "", "", ""],
		["images/rotating_photos/2_dg.jpg", "", "", ""],
		["images/rotating_photos/3_he.jpg", "", "", ""],
		["images/rotating_photos/4_ed.jpg", "", "", ""],
		["images/rotating_photos/5_ed.jpg", "", "", ""],
		["images/rotating_photos/6_ee.jpg", "", "", ""]
	],
	pause: 3000, //pause between content change (millisec)
	transduration: 1000 //duration of transition (affects only IE users)
	// ["image_path", "optional_image_link", "optional_link_target", "optional_text_description],
})

//-->