
var mygallery=new fadeSlideShow({
	wrapperid: "onramp_slideshow", //ID of blank DIV on page to house Slideshow
	dimensions: [870, 418], //width/height of gallery in pixels. Should reflect dimensions of largest image
	imagearray: [
		["/images/slideshow/home_frame_1.png", "/our-work/", "", ""],
		["/images/slideshow/wholy_shift.png", "javascript:customVideoHandler();", "", ""],
		["/images/slideshow/home_frame_2.png", "/our-work/", "", ""],
		["/images/slideshow/home_frame_3.png", "/our-work/", "", ""],
		["/images/slideshow/home_frame_4.png", "/our-work/", "", ""],
		["/images/slideshow/home_frame_6.png", "/our-work/", "", ""]
				], //Second parameter takes URL if you want to be able to link
	displaymode: {type:'auto', pause:4000, cycles:0, wraparound:false},
	persist: false, //remember last viewed slide and recall within same session?
	fadeduration: 1500, //transition duration (milliseconds)
	descreveal: "ondemand",
	togglerid: "slideshowtoggler",
	pausetime: {slide1:1500, slide2:4000, slide3:4000, slide4:4000, slide5:4000, slide6:1500}
})

function slide_click(slideID)
{
document.getElementById('slide1').src='/images/buttons/gray_circle.gif';
document.getElementById('slide2').src='/images/buttons/gray_circle.gif';
document.getElementById('slide3').src='/images/buttons/gray_circle.gif';
document.getElementById('slide4').src='/images/buttons/gray_circle.gif';
document.getElementById('slide5').src='/images/buttons/gray_circle.gif';
document.getElementById('slide6').src='/images/buttons/gray_circle.gif';

document.getElementById(slideID).src='/images/buttons/green_circle.gif';
}

/*
Old check it out link (last parameter): <a href='http://www.google.com'><img src='images/check_it_out.png' style='float: right; border: 0;'></a>
*/
