var quotations = new Array()
var a = 0
quotations[0]= "<p class=\"SlideShowTop\">Same Day Service</p>Need your computer urgently for work? We can help, even if that means we'll need to work extra hours!<br>Call us now for a same day onsite tech visit; alternatively you can bring in for faster services.<br><span class=\"SmallItalicPrint\"><br>* some conditions applies</span>"
quotations[1]= "<p class=\"SlideShowTop\">Problem Solved or Your Money Back</p>Have a Peace of Mind when you use our services! If we cannot provide a solution, you won't have to pay. It's absolutely risk-free. Why not give us a call now to find out how we can help.<br><span class=\"SmallItalicPrint\"><br>* some conditions applies</span>"
quotations[2]= "<p class=\"SlideShowTop\">3 Month Service Warranty</p>Our success depends on customer satisfaction. That's why we offer 3 Month Service Warranty.<br>At Safemode, we don't just look at jobs as one-off, we won't stop trying till the problem is fixed for good.<br><span class=\"SmallItalicPrint\"><br>* some conditions applies</span>"
quotations[3]= "<p class=\"SlideShowTop\">Upfront Quote</p>\"How much?\" is one question everyone asks. Don't take the risk of paying a huge bill! Our experienced technicians will test your computer and give you a quote so you know exactly how much it will be.<br><span class=\"SmallItalicPrint\"><br>* some conditions applies</span>"
quotations[4]= "<p class=\"SlideShowTop\">We Have Done More Than 10,000 Jobs</p>Just a fact that you may want to know. We have done more than 10,000 jobs, from Windows troubleshooting to motherboard replacement, from wireless networking to server client setup, for home or businesses, day in day out."
quotations[5]= "<p class=\"SlideShowTop\">We are Here for You</p>Many competitors are mobile services, or bring-in-only stores; we are different. Whether you want us to come to you, or you want to visit us, we are always here when you need it the most."
var pictures = new Array()
pictures[0]= "url(images/homepage/USP_slide_show1.jpg)"
pictures[1]= "url(images/homepage/USP_slide_show2.jpg)"
pictures[2]= "url(images/homepage/USP_slide_show3.jpg)"
pictures[3]= "url(images/homepage/USP_slide_show1.jpg)"
pictures[4]= "url(images/homepage/USP_slide_show2.jpg)"
pictures[5]= "url(images/homepage/USP_slide_show3.jpg)"

function display()
{
c=a-1
if (a==0){
	c=5
}
document.getElementById('quotation').innerHTML=quotations[a]
document.getElementById('SlideShowTable').style.backgroundImage=pictures[a]
document.getElementById('menu' + a).style.color="yellow"
document.getElementById('menu' + c).style.color=""
t = setTimeout("display()",5000)
a = a+1
if (a>5)
	{
	a = 0
	}
}
function manualdisplay(s)
{
	document.getElementById('quotation').innerHTML=quotations[s]
	document.getElementById('SlideShowTable').style.backgroundImage=pictures[s]
	clearTimeout(t)
	document.getElementById('menu0').style.color=""
	document.getElementById('menu1').style.color=""
	document.getElementById('menu2').style.color=""
	document.getElementById('menu3').style.color=""
	document.getElementById('menu4').style.color=""
	document.getElementById('menu5').style.color=""

	document.getElementById('menu' + s).style.color="yellow"
}


