
function toggleMe(a){
  var e=document.getElementById(a);
  if(!e)return true;
  if(e.style.display=="none"){
    e.style.display="block";
  } else {
    e.style.display="none";
  }
  return true;
}

 
function swapImage(b) {

	var list = document.getElementById('listimage' + b);
	var element = document.getElementById('para' + b);
	
  if(element.style.display=="none"){
	list.style.listStyleImage = "url('http://www.quantum-wireless.com/Images/arrow.png')";
  } else {
    list.style.listStyleImage = "url('http://www.quantum-wireless.com/Images/arrow-down.png')";
  }
  return true;
}


function doStuff(n){
	
	toggleMe('para' + n)
	swapImage(n)
	return true;
}

function limitAll(){
	if((location.href.search("?limit=all") == -1){
		window.location.href += "?limit=all";	
	}
}
