Shadowbox.init({
	players:    		["html"],
	overlayColor:		"#000000",
	overlayOpacity: 	".5",
	onClose:			function(){ go(); }
});

function load(slide) {
	stop();
	
	var title = "";
	var msg = "<";
	msg += "div id=\"click_overlay\">";
	
	switch(slide) {
		case "r1":
			title = "";
			msg += "<h2>Confidence</h2><p>35+ years of experience and always learning; that is the foundation for confidence and your doctor at Inge Dental.  The staff at our practice has been here for over 20 years, these are familiar faces you know and trust.</p><p>Dr. Inge's skills are not based the fact that he has done procedures thousands of times over the years, but rather on continual improvement.  Through forums and continual education he ensure you have access to the best procedures and diagnostic information available in the dental industry.  When you are under the care of Inge dental, you are in the hands of industry experts with front line experience as well as access to best industry practices.</p>";
		break;
		
		case "r2":
			title = "";
			msg += "<h2>Comfort</h2><p>Compassion and caring go hand in hand at Inge dental. We strive to know you as a person, not just a patient.  Your needs, desires, and concerns become part of the relationship and the care strategy we put in place to support your dental health and confidence when leaving our offices and in your day to day activities.</p><p>Caring, Comfort, and Confidence; the three attributes you can count on when under the care of Inge Dental.</p>";
		break;
		
		case "r3":
			title = "";
			msg += "<h2>Caring</h2><p>Compassion and caring go hand in hand at Inge dental. We strive to know you as a person, not just a patient.  Your needs, desires, and concerns become part of the relationship and the care strategy we put in place to support your dental health and confidence when leaving our offices and in your day to day activities.</p><p>Caring, Comfort, and Confidence; the three attributes you can count on when under the care of Inge Dental.</p>";
		break;
	}
	
	msg += "<";
	msg += "/div>";
	
	Shadowbox.open({
		content:    msg,
		player:     "html",
		title:      "Welcome",
		background: '#333333',
		height:     350,
		width:      550
	});
}

function hook_goTrans() {
}

function loadClickable() {
	load('r'+(((slideNum-1)%slideAmount)+1));
}
