<!--
function IEHoverPseudo() {
	var navItems = document.getElementById("primary-nav").getElementsByTagName("li");
	for (var i=0; i<navItems.length; i++) {
		if(navItems[i].className == "menuparent") {
			navItems[i].onmouseover=function() { this.className += " over"; }
			navItems[i].onmouseout=function() { this.className = "menuparent"; }
		}
	}
}

function toggleLayer(whichLayer) {
	if (document.getElementById)
	{
		var style2 = document.getElementById(whichLayer).style;
		style2.display = style2.display? "":"block";
	}
	else if (document.all)
	{
		var style2 = document.all[whichLayer].style;
		style2.display = style2.display? "":"block";
	}
	else if (document.layers)
	{
		var style2 = document.layers[whichLayer].style;
		style2.display = style2.display? "":"block";
	}
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

PPNImages = new Array("/models/model2.png", "/models/model3.png", "/models/model1.gif");
thisImg=0;

function rotate() {
  document.PPNBanner.src = PPNImages[thisImg];
  setTimeout("rotate()", 20000);
  thisImg = thisImg+1;
  if (thisImg == 4) { thisImg=0; }
}

banners = new Array();
banners[0] = '<div align="center"><a href="http://www.amazon.co.uk/gp/reader/0470026685/ref=sib_dp_pt#reader-link" title="From Products to Services. Insights and experience from companies which have embraced the service economy"><img src="/media/book2.png" width="161" height="157" border="0" alt="From Products to Services. Insights and experience from companies which have embraced the service economy" /></a></div>';

banners[1] = '<div align="center"><a href="http://www.amazon.co.uk/gp/reader/0470011734/ref=sib_dp_rdr/026-8127696-0007633#reader-link" title="Marketing the Professional Services Firm: Applying the Principles and Science of Marketing to Professional Services"><img src="/media/book.png" width="161" height="157" border="0" alt="Marketing the Professional Services Firm: Applying the Principles and Science of Marketing to Professional Services" /></a></div><div style="padding-left: 18px;"><a class="bluetext" href="/reviews.php"><em>Book reviews</em></a></div>';

banners[2] = '<div align="center"><a href=" http://www.amazon.cn/mn/detailApp?qid=1237443393&ref=SR&sr=13-3&uid=168-9366755-1810638&prodid=zjbk901qbw" title="From Products to Services - Chinese language version"><img src="/media/CoverChina.JPG" width="106" height="157" border="0" alt="From Products to Services - Chinese language version" /></a></div>';

banners[3] = '<div align="center"><a href="http://www.amazon.co.uk/gp/reader/0470748400/ref=sib_dp_pt#reader-link" title="Marketing Technology as a Service: Proven techniques that create value"><img src="/media/book3.png" width="161" height="157" border="0" alt="Marketing Technology as a Service: Proven techniques that create value" /></a></div>';


var timer = null
var counter = 0

function nextAd() {
	timer=setTimeout("nextAd()", 20000);
	counter++;
	if (counter >= 4)
		counter = 0;
		document.getElementById('rotate2').innerHTML = banners[counter];
}
//-->