/* #################### JavaScript Document ##################### */
/* ###################### ©2008 - PontoWeb ###################### */
/* ############################################################## */
/*
 ____                __           __      __          __        
/\  _`\             /\ \__       /\ \  __/\ \        /\ \       
\ \ \ \ \___     ___\ \ ,_\   ___\ \ \/\ \ \ \     __\ \ \____  
 \ \ ,__/ __`\ /' _ `\ \ \/  / __`\ \ \ \ \ \ \  /'__`\ \ '__`\ 
  \ \ \/\ \ \ \/\ \/\ \ \ \_/\ \ \ \ \ \_/ \_\ \/\  __/\ \ \ \ \
   \ \_\ \____/\ \_\ \_\ \__\ \____/\ `\___ ___/\ \____\\ \_,__/
    \/_/\/___/  \/_/\/_/\/__/\/___/  '\/__//__/  \/____/ \/___/

*/
/* ############################################################## */

var activeBtn = "";
var activeFooterLink = "";
var currentSection ="";

function setActiveBtn(btnID,path,footerLinkID) {
	var btn = document.getElementById(btnID);
	roll(btn,path);
	activeFooterLink = footerLinkID;
	activeBtn = btnID;
}
function roll(obj,path) {
	if(obj.id!=activeBtn){
		obj.src = path; 
	}
}
function setActiveFooterLink() {
	var footerLink = document.getElementById(activeFooterLink);
	footerLink.className = "selected";
}
