function openTour() {
	var newWindow = window.open("http://www.tutortime.com/files/virtualtour_tt/tour.html?ttnLink=true","","height=400,width=600,menubar=0,location=0,scrollbars=0,status=0,titlebar=0,toolbar=0,resizable=0,");
	return true;
}

function makePromoRotator() {

	// Set slideshow variables
	$('body.home div#promo_rotator').after('<div id="promonav"><div id="promonav_inner"></div></div>').cycle({
		fx: 'scrollHorz',
		speed: 800,
		timeout: 6000,
		pause: 1,
		pager: '#promonav_inner'
	});

	$('div.slide').click(function(){
		$('div#promo_rotator').cycle('pause');
	})

}

$(document).ready(function(){
	if($('body').hasClass('home')){
		if ($('div#promo_rotator').length && !$('div#admin').length) makePromoRotator();
	}
})
