/*****************************************************************/
/*                                                               */
/*    JavaScript Document Developed by IVAN ALEKSIC              */
/*    SROOWN Interactive Design Solutions - WWW.SROOWN.COM       */
/*    COPYRIGHT BELGRADE EYE - BELGRADE - SERBIA - EUROPE		 */
/*    Revision 1.0 - August 13. 2008.                            */
/*                                                               */
/*****************************************************************/


var active_hidden_text = "";
function doSection(obj)
{
	
	if(document.getElementById(obj).style.display == 'none')
	{
		document.getElementById(obj).style.display = 'block';
	}

	if(active_hidden_text != "" && active_hidden_text != obj)
	{
		document.getElementById(active_hidden_text).style.display = 'none';
	}

	active_hidden_text = obj;
}

var switchElements = new Array('nav1','nav2','nav3','nav4','nav5','nav6','nav7');
var switchClasses = ['current', ''];

function sS(el) {
    var elm = document.getElementById(el); 
    
    for(var i=0;i<switchElements.length;i++) {
        var el2 = document.getElementById(switchElements[i]);
        el2.className = switchClasses[1];
	}
    elm.className = switchClasses[0];
    return false;
}