/*function switch_submenu() {

	if ( document.getElementById('submenu').style.display == 'block' ) {
		document.getElementById('submenu').style.display = 'none'
	} else {
		document.getElementById('submenu').style.display = 'block'
	}

}*/
function switch_submenu(id) {

	if ( document.getElementById(id).style.display == 'block' ) {
		document.getElementById(id).style.display = 'none'
	} else {
		document.getElementById(id).style.display = 'block'
	}

}
window.onload = function() {

	//alert(window.location);
	for ( var i=0; i<document.getElementsByTagName('a').length; i++ ) {
		document.getElementsByTagName('a')[i].onfocus = function() {
			this.blur()
		}
	}
	var filestr =new String(window.location);
	
	var namesarr = filestr.split("/");
	distfile = namesarr[namesarr.length-1];
	/*if(distfile=="collect.php" || distfile=="consultancy.php" || distfile=="artists_services.php" ){
		switch_submenu('submenu1');
	}*/
	if(distfile=="collect.php" || distfile=="consultancy.php" || distfile=="artists_services.php" || distfile=="commission.php" || distfile=="rent.php"){
		switch_submenu('submenu1');
	}
	
}