// JavaScript Document

function changeButton(a, status){
	
if (a==0){
	
	if (status==1) {document.getElementById('button0').src="images/button_home_up.jpg";} // UP/MOUSE OVER
	else {document.getElementById('button0').src="images/button_home_down.jpg";} // DOWN / MOUSE OUT	
	
}

if (a==1){
	if (status==1) {document.getElementById('button1').src="images/button_web_up.jpg";} // UP/MOUSE OVER
	else {document.getElementById('button1').src="images/button_web_down.jpg";} // DOWN / MOUSE OUT	
}

if(a==2)
{	
	if (status==1) {document.getElementById('button2').src="images/button_seo_up.jpg";} // UP/MOUSE OVER
	else {document.getElementById('button2').src="images/button_seo_down.jpg";} // DOWN / MOUSE OUT	
	
}

if(a==3)
{	
	if (status==1) {document.getElementById('button3').src="images/button_win_up.jpg";} // UP/MOUSE OVER
	else {document.getElementById('button3').src="images/button_win_down.jpg";} // DOWN / MOUSE OUT	
	
}

if(a==4)
{	
	if (status==1) {document.getElementById('button4').src="images/button_contact_up.jpg";} // UP/MOUSE OVER
	else {document.getElementById('button4').src="images/button_contact_down.jpg";} // DOWN / MOUSE OUT	
	
}
	
	
}


	
	
