

function showMenu(element) {
	if (element.lastChild.nodeName.toUpperCase() == 'UL') {
		element.lastChild.style.display = 'block';
	}
}

function hideMenu(element) {
	if (element.lastChild.nodeName.toUpperCase() == 'UL') {
		element.lastChild.style.display = 'none';
	}
}

function bookmark_us(url, title) {
	if (window.sidebar) {					// Firefox
		window.sidebar.addPanel(title, url, '');
	} else if (window.opera && window.print) {	// Opera
		var elem = document.createElement('a');
		elem.setAttribute('href', url);
		elem.setAttribute('title', title);
		elem.setAttribute('rel', 'sidebar');
		elem.click();
	} else if (document.all) {				// IE
		window.external.AddFavorite(url, title);
	}
}




$(document).ready(function(){
	
	//load
	if($('#uid24').val()!=0){
		  $('#tx-powermail-pi1_fieldset_6 div').show();
		  $('#tx-powermail-pi1_fieldset_6').show('slow');
		  $('#tx-powermail-pi1_fieldset_6 div:gt('+$('#uid24').val()+')').hide();
		  
	  } else {
		  $('#tx-powermail-pi1_fieldset_6').hide();
	  }
	

	//change
	$('#uid24').change(function() {
		  if(this.value!=0){
			  $('#tx-powermail-pi1_fieldset_6 div').show();
			  $('#tx-powermail-pi1_fieldset_6').show('slow');
			  $('#tx-powermail-pi1_fieldset_6 div:gt('+this.value+')').hide();
			  
		  } else {
			  $('#tx-powermail-pi1_fieldset_6').hide();
		  }
	});
	
	
	
	//load
	if($('#uid44').val()!=0){
		  $('#tx-powermail-pi1_fieldset_9 div').show();
		  $('#tx-powermail-pi1_fieldset_9').show('slow');
		  $('#tx-powermail-pi1_fieldset_9 div:gt('+$('#uid44').val()+')').hide();
		  
	  } else {
		  $('#tx-powermail-pi1_fieldset_9').hide();
	  }
	

	//change
	$('#uid44').change(function() {
		  if(this.value!=0){
			  $('#tx-powermail-pi1_fieldset_9 div').show();
			  $('#tx-powermail-pi1_fieldset_9').show('slow');
			  $('#tx-powermail-pi1_fieldset_9 div:gt('+this.value+')').hide();
			  
		  } else {
			  $('#tx-powermail-pi1_fieldset_9').hide();
		  }
	});
	
});
