	var product_rollovers = new Array();
	product_rollovers[0] = new Array("Easily capture project and non project time in web-based timesheets.  Time can be allocated to general categories... <a href = \"#\" class = \"more\" onmouseover = \"product('over', 1);\" onmouseout = \"product('out', 1);\">>></a>", "Easily capture project and non project time in web-based timesheets.  Time can be allocated to general categories or specific projects and tasks.  Timesheets are automatically generated for the user.  Actual hours are entered are routed to the project and functional manager for approval. The project manager has the option of taking the actuals hours and posting them to the project plan as progress.");
	product_rollovers[1] = new Array("Team members are chosen for the project from the common resource pool that is shared across all projects... <a href = \"#\" onmouseover = \"product('over', 2);\" onmouseout = \"product('out', 2);\" class = \"more\">>></a>", "Team members are chosen for the project from the common resource pool that is shared across all projects. When selecting an individual for your project you can see their skills and availability to determine if they are the best fit for your project. Resource loadings can be viewed to see the entire organizations workload and skill usage.");
	product_rollovers[2] = new Array("SimplyPM offers a full featured environment for team collaboration. This includes calendars, document... <a href = \"#\" onmouseover = \"product('over', 3);\" onmouseout = \"product('out', 3);\" class = \"more\">>></a>", "SimplyPM offers a full featured environment for team collaboration. This includes calendars, document management, discussion forums and on-line conferencing. Keeping all of this data in one location provides a single source of information about the project so team members don\'t waste time tracking down the latest information.");
	product_rollovers[3] = new Array("Creating a project plan in SimplyPM is simple and intuitive. Templates can be pre-defined and used as a starting... <a href = \"#\" onmouseover = \"product('over', 4);\" onmouseout = \"product('out', 4);\" class = \"more\">>></a>", "Creating a project plan in SimplyPM is simple and intuitive. Templates can be pre-defined and used as a starting point for each project. Plans can be created in the interactive Gantt view which provides a visual picture of your timeline.  If it is fast data entry you want switch to the spreadsheet view. In either view, tasks and resource assignments can be added, modified and updated and the resulting schedule changes seen immediately.");

	function imgov (id, imgsrc){
		document.getElementById(id).src = imgsrc;
	}
	
	function update_text(id, textvalue){
		document.getElementById(id).innerHTML = textvalue;
	}
	
	function product(state, id){
		if (state == 'out'){
//			update_text('item'+id, product_rollovers[3][0]);

		//	document.getElementById('arrow'+id).style.display = "none";
		} else {
			for (var i = 1; i < 5; i++){
				update_text('item'+i, product_rollovers[(i-1)][0]);
				document.getElementById('arrow'+i).style.display = "none";
				document.getElementById('link'+i).className = "title";
			}

			update_text('item'+id, product_rollovers[(id-1)][1]);
			imgov('ss', 'images/screenshot_0'+id+'.jpg');
			document.getElementById('arrow'+id).style.display = "block";
			document.getElementById('link'+id).className = "sel";
		}
	}
