/*buttons industria / comercio - initial page*/
function changeButtonIndHover(){
	document.getElementById('btInd').style.background = 'url(images/bkg_options_produtcs_hover.jpg)';
	document.getElementById('btInd').style.color = '#69f';
	document.getElementById('btInd').style.cursor = 'pointer';
}
function changeButtonIndOut(){
	document.getElementById('btInd').style.background = 'url(images/bkg_options_produtcs.jpg)';
	document.getElementById('btInd').style.color = '#fff';
	document.getElementById('btInd').style.textDecoration = 'none';
}

function changeButtonComHover(){
	document.getElementById('btCom').style.background = 'url(images/bkg_options_produtcs_hover.jpg)';
	document.getElementById('btCom').style.color = '#69f';
	document.getElementById('btCom').style.cursor = 'pointer';
}
function changeButtonComOut(){
	document.getElementById('btCom').style.background = 'url(images/bkg_options_produtcs.jpg)';
	document.getElementById('btCom').style.color = '#fff';
	document.getElementById('btCom').style.textDecoration = 'none';
}

/*change menu top / banners*/
function upDiv(){
	document.getElementById('apDiv2').style.zIndex = '0'
}
function downDiv(){
	document.getElementById('apDiv2').style.zIndex = '2'
}

/*open window*/
function openWindow(theURL,winName,features) { //v2.0
	window.open(theURL,winName,features);
}

//add to favorites
function addFavorites() {
	var url = "http://www.shx.com.br";
    var title = ".: Portal SHX :.";
    if (window.sidebar){
		window.sidebar.addPanel(title, url,"");
	} else if (window.opera && window.print){
        var mbm = document.createElement('a');
        mbm.setAttribute('rel','sidebar');
        mbm.setAttribute('href',url);
        mbm.setAttribute('title',title);
        mbm.click();
    } else if(document.all){
		window.external.AddFavorite(url, title);
	}
}
