
// Application Buttons //
//Service & Body Shop
var imgOnAppointment = new Image(222,42);
imgOnAppointment.src = '/images/image.php?file=appointment2.gif';
var imgOffAppointment = new Image(222,42);
imgOffAppointment.src = '/images/image.php?file=appointment1.gif';

//Parts
var imgOnPartsRequest = new Image(183,42);
imgOnPartsRequest.src = '/images/image.php?file=parts_request2.gif';
var imgOffPartsRequest = new Image(183,42);
imgOffPartsRequest.src = '/images/image.php?file=parts_request1.gif';

//Finance
var imgOnCreditApp = new Image(294,42);
imgOnCreditApp.src = '/images/image.php?file=credit_app2.gif';
var imgOffCreditApp = new Image(294,42);
imgOffCreditApp.src = '/images/image.php?file=credit_app1.gif';

function showPopup(url) {
newwindow=window.open(url,'name','height=1200,width=1024,top=200,left=300,resizable=1,scrollbars=1');
if (window.focus) {newwindow.focus()}
} 


function openWindow(url,width,height){
	newWin = window.open(url, 'viewWin', 'toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,left='+(screen.width-width)/2+',top='+(screen.height-height)/2+',width=' + width + ',height=' + height + '');
}		

function changeImg(imgName,imgPre) {
	if(document.images){
		document.images[imgName].src = eval(imgPre + '.src');
	}
}

function changeStyle(obj, new_style) {
    obj.className = new_style;
}

projectImage = new Array("images/slides/slideOne.png", "images/slides/slideTwo.png","images/slides/slideThree.png", "images/slides/slideFour.png", "images/slides/slideFive.png", "images/slides/slideSix.png", "images/slides/slideSeven.png", "images/slides/slideEight.png", "images/slides/slideNine.png", "images/slides/slideTen.png", "images/slides/slideEleven.png", "images/slides/slideTwelve.png", "images/slides/slideThirteen.png", "images/slides/slideFourteen.png", "images/slides/slideFifteen.png", "images/slides/slideSixteen.png", "images/slides/slideSeventeen.png", "images/slides/slideEighteen.png", "images/slides/slideNineteen.png", "images/slides/slideTwenty.png", "images/slides/slideTwentyone.png", "images/slides/slideTwentytwo.png", "images/slides/slideTwentythree.png", "images/slides/slideTwentyfour.png");
 
var thisProject=0;
var projectLength = projectImage.length
 
 
//addURLs=new Array("http://www.facebook.com","http://www.google.ca","assets/projects/shoes.htm");
 
 
function slideShow(){
 
	thisProject++;
	if (thisProject==projectLength){
		thisProject=0;
}
 
document.getElementById("rotProjects").src=projectImage[thisProject];
setTimeout("slideShow()", 3*1000);
}
 
function clickProject(){
document.location=addURLs[thisProject]
}
 

