

//Sequential fly-in text script- by JavaScriptKit.com
//For this script and 400+ more, visit http://www.javascriptkit.com
//This notice must stay intact for use

var pausebetweenmsg=10 //customize pause in miliseconds between each message showing up (3000=3 seconds)
var glidespeed=50 //customize glide speed in pixels per frame.

var curobjindex=0

function actualstyle(el, cssproperty){
if (el.currentStyle)
return el.currentStyle[cssproperty]
else if (window.getComputedStyle){
var elstyle=window.getComputedStyle(el, "")
return elstyle.getPropertyValue(cssproperty)
}
}

function collectElementbyClass(){
var classname="glidetext"
glidearray=new Array()
var inc=0
var alltags=document.all? document.all : document.getElementsByTagName("*")
for (i=0; i<alltags.length; i++){
if (alltags[i].className==classname)
glidearray[inc++]=alltags[i]
}
if (glidearray.length>0)
onebyoneglide()
}

function onebyoneglide(){
if (curobjindex<glidearray.length)
glidetimer=setInterval("glideroutine()",50)
}

function glideroutine(){
if (parseInt(actualstyle(glidearray[curobjindex], "left"))<0)
glidearray[curobjindex].style.left=parseInt(actualstyle(glidearray[curobjindex], "left"))+50+"px"
else{
glidearray[curobjindex].style.left=0
curobjindex++
clearInterval(glidetimer)
setTimeout("onebyoneglide()", pausebetweenmsg)
}
}

if (window.addEventListener)
window.addEventListener("load", collectElementbyClass, false)
else if (window.attachEvent)
window.attachEvent("onload", collectElementbyClass)
else if (document.getElementById)
window.onload=collectElementbyClass

// JavaScript Document

function makeArray(len) {
	for (var i=0; i<len; i++) this[i]=null;
this.length = len;
}

//Array of images
var pic1 = new makeArray(7);

pic1[0] = "&ldquo;It's our 10th anniversary, we have fantastically loyal staff and clients which has allowed us to grow 30% in the first 6 months of 2009. PS There's a recession. &rdquo;";

pic1[1] = "&ldquo;We're particularly proud of our on-time and on-budget delivery record, we even guarantee it in all our contracts... [GULP]&rdquo;";



pic1[2] = "&ldquo;e like to make things easy for our clients, we think of ourselves as a 'can do' company&rdquo;";

pic1[3] = "&ldquo;Sometimes things go wrong, but it's how we handle them that make them a problem or not. Our clients speak directly to the support team - and none of that queuing business either.&rdquo;";

pic1[4] = "&ldquo;Some of our clients even name the applications we develop as they are as integral as any member of staff. 'Glenda' springs to mind - no really&rdquo;";

pic1[5] = "&ldquo;We've been told we're nice people to deal with. Which is... nice&rdquo;";

pic1[6] = "&ldquo;All our medium to large work involves a dedicated project manager, they're your point of contact, keeping you informed and dealing with the techie guys for you. No geek speak here.&rdquo;";


// Generate random number
function rand(n) {
seed = (0x015a4e35*seed) % 0x7fffffff;
return (seed >>7) %n;
}

var now= new Date()
var seed= now.getTime() % 0xffffffff