// JavaScript Document
// copyright 2008 Instant Effects

////////////////////////////////////////////
var products = new Array();
products[0] = "<h3><a href='presenter.html'>Presenter</a></h3><h4>Our suite is centered around the Presenter family of products -- Microsoft PowerPoint Add-ins that pick up where PowerPoint’s advanced media features stop.</h4><p>Create your presentation within PowerPoint, then add beautiful animated backgrounds, dynamic slide transitions, interactive 3D objects, and fully integrated dvd-quality video.  Change your content at any time before your presentation.  Then present the resulting fully-integrated rich media experience using only your computer, with no need for additional video or mixing equipment.  </p>";

products[1] = "<h3><a href='fxshow.html'>FXShow</a></h3><h4>Distribute your Presentation. Maintain Content Flexibility.</h4><p>With FXShow, users can modify and deliver presentations authored with OfficeFX Presenter, but they cannot change the overall visual appearance selected in OfficeFX Presenter. FXShow allows Creative Services to supply dynamic and well-designed presentations for use throughout an organization, while leaving the presenter empowered to make basic content changes at any time.</p>";

products[2] = "<h3><a href='fxdplayer.html'>FXD Interactive Media Player</a></h3><h4> A Breakthrough in Easily Authored and Distributed Convergent Media </h4><p>Once you’ve enhanced your presentation with OfficeFX Presenter, it can be published to an FXD file.  FXD files are similar to Adobe Acrobat PDF files in that they can be interactively displayed on any computer with qualified graphics hardware by using our free FXD Player.  All OfficeFX Presenter integrated media features are supported, but no further editing or content changes can be made to a presentation in FXD format.</p>";

products[3] = "<h3><a href='authoring_toolkit.html'>OfficeFX Presenter Authoring Toolkit</a></h3><h4>Create your own FXThemes, Logos and Insert Scenes</h4><p><img src='images/icon_med_gear_hl.jpg' class='floatleft'>Using Autodesk 3dsmax and the Authoring Toolkit, your in-house digital artists - or Instant Effects’ production department - can create custom FXThemes and insert scenes for use with all versions of Presenter. 3dsmax authors can create custom branded FXThemes, logos and  transitions and that can be easily used by anyone familiar with Presenter, and will lend an additional air of professionalism to your mission-critical presentations.   FXThemes and logos are reusable in future presentations, making production services a cost-effective solution for customized content.</p>";

////////////////////////////////////////////
var currentItem = 0;
var currentPos = 0;
function moveto( v ) {
	if (currentPos != v) {
		if (v < currentPos ){ currentPos -= 29; }
		else { currentPos += 29; }
		
		document.getElementById('productTourHandle').style.left = currentPos + "px"
		setTimeout('moveto(' + v + ')', .1 );
	}
}
function setProduct( n ) {
	var movetoval = (n * 580) * -1;
	setTimeout( 'moveto(' + movetoval + ')', 0 );
	currentItem = n;
	document.getElementById('productsTourA').className = "";
	document.getElementById('productsTourB').className = "";
	document.getElementById('productsTourC').className = "";
	document.getElementById('productsTourD').className = "";
	if ( n == 0 ){ document.getElementById('productsTourA').className = "active"; }
	if ( n == 1 ){ document.getElementById('productsTourB').className = "active"; }
	if ( n == 2 ){ document.getElementById('productsTourC').className = "active"; }
	if ( n == 3 ){ document.getElementById('productsTourD').className = "active"; }

	//document.getElementById('productTourData').innerHTML =  products[n];
}
function setHoverForIE() {
	document.getElementById('productsTourA').onmouseover = function() { this.className = 'active'; };
	document.getElementById('productsTourB').onmouseover = function() { this.className = 'active'; };
	document.getElementById('productsTourC').onmouseover = function() { this.className = 'active'; };
	document.getElementById('productsTourD').onmouseover = function() { this.className = 'active'; };
	
	document.getElementById('productsTourA').onmouseout = function() { if (currentItem != 0) { this.className = '';} };
	document.getElementById('productsTourB').onmouseout = function() { if (currentItem != 1) { this.className = '';} };
	document.getElementById('productsTourC').onmouseout = function() { if (currentItem != 2) { this.className = '';} };
	document.getElementById('productsTourD').onmouseout = function() { if (currentItem != 3) { this.className = '';} };

}







