var toppings = new Array(10);
toppings[0] = "Traditional Pizza of Italy with Mozzarella Cheese, Special Tomato Sauce and Herbs.<br/>Cheese release me, let me go!";
toppings[1] = "Ham and Pineapple. <br/>The perfect companion to the grass skirt. Aloha!";
toppings[2] = "Tuna and Olives. <br/>Sleep with the fishes - Refuse and Die!";
toppings[3] = "Spicy Meat Balls and Jalapeno Peppers.<br/>Great Balls of Fire!";
toppings[4] = "Jalapeno Peppers, Onions and Chilli Sauce. <br/>If You Dare!";
toppings[5] = "Bacon, Lettuce, Sliced Tomato and Extra Mozzarella. <br/>V.G.P.";
toppings[6] = "Mushrooms,Peppers, Onions, Sweetcorn. <br/>Calling all Tree Huggers, Get Back To Your Roots";
toppings[7] = "Pepperoni,Salami, Ham and Bacon. <br/>A Meaty Treat.";
toppings[8] = "BBQ sauce, Chicken, Smoked Bacon, Red Onion and Green Pepper. <br/>Aint that the Berries!!";
toppings[9] = "Mushrooms, Red Onions, Pepperoni, Peppers and Ham. <br/>All aboard the feast train!!";

var names = new Array(10);
names[0] = "Margherita : ";
names[1] = "Hawaiian : ";
names[2] = "Savoury Sicilian : ";
names[3] = "Hot N' Spicy : ";
names[4] = "Tex Mex : ";
names[5] = "BLT : ";
names[6] = "Good Earth : ";
names[7] = "MIghty Meaty : ";
names[8] = "Smoke House : ";
names[9] = "Railroader : ";

var select = new Array(10);
select[0] = false;
select[1] = false;
select[2] = false;
select[3] = false;
select[4] = false;
select[5] = false;
select[6] = false;
select[7] = false;
select[8] = false;
select[9] = false;

var i = 0;
var tipsTitle = new Array(5);
var tipsinfo = new Array(5);
tipsTitle[0] = "Bored?";
tipsTitle[1] = "Hot! Hot!";
tipsTitle[2] = "Toppings eh?";
tipsTitle[3] = "Fed up?";
tipsTitle[4] = "I feel like Chicken Tonight";
tipsinfo[0] = "Bored of the same old pizza sauce base? Well why not try a BBQ or Chilli sauce base! Not only do they taste great but they are also free of charge.";
tipsinfo[1] = "Chilli sauce just not hot enough? Jalapeno Peppers just too cool. Why not ask for some chilli powder on your pizza, just to spice things up a bit!";
tipsinfo[2] = "You aren't restricted to putting toppings on a pizza. Try your favourite pizza toppings on a hero crust.";
tipsinfo[3] = "Too much sauce? Or not enough? Don't let us decide, get a sauce tub and you take control!";
tipsinfo[4] = "Everybody loves dragon tongue supreme but why not add some chicken?";

int = self.setInterval("tips()",5000)


function clickSpecials(){

document.images.buttonspecials.src = "images/specials-button-white-down.png";
}
function releasedSpecials(){

document.images.buttonspecials.src = "images/specials-button-white-up.png";
}

function clickPizza(){

document.images.buttonpizza.src = "images/pizza-button-white-down.png";
}
function releasedPizza(){

document.images.buttonpizza.src = "images/pizza-button-white-up.png";

}
function getToppings(n){

	
	for (var i=0;i<10;i++)
  {

  	document.getElementById("p"+i).style.color = 'black';

  }

	str="<span id = 'titlesmallred'>" +names[n]+ "</span>"
	str+=toppings[n]
	select[n]=true;
  	document.getElementById("p"+n).style.color = '#690000';
	
  	
	
	
	document.getElementById("info").innerHTML = str
}
function topenter(n){
if(select[n]!=true){
document.getElementById("p"+n).style.color = '#00710E';
}
}
function topexit(n){
if(select[n]!=true){
document.getElementById("p"+n).style.color = 'black';
}
}
function tips(){
document.getElementById("tipsTitle").innerHTML = tipsTitle[i];
document.getElementById("tipsInfo").innerHTML = tipsinfo[i];
i++;
if(i==5)
i=0;



}

