// JavaScript Document
function setSection(section){
	currentSection = section;
	Section();
}

function checkSection(){
	document.getElementById('callaction').style.backgroundPosition="top";
	
	
	if(currentSection == "callaction"){
		document.getElementById('callaction').style.backgroundPosition="bottom";
	}
	
	else {
		document.getElementById('callaction').style.backgroundPosition="top";
	}
}

function changeButtons(n){
	switch(n){
		case 1:
		document.getElementById('callaction').style.backgroundPosition="bottom";
		break;

		
	}
}

function changeButtonsBack(n){
	switch(n){
		case 1:
		if(currentSection == "callaction"){
			document.getElementById('callaction').style.backgroundPosition="bottom";
		}
		else {
			document.getElementById('callaction').style.backgroundPosition="top";
		}
		break;
		
		
		
		
	}
}
