function getStringVar(st){
  var temp = self.document.location.search;
  if(temp.indexOf(st) >= 0){
    temp = temp.substring((temp.indexOf(st)+(st.length+1)), temp.length);
    temp = temp.substring(0, (((temp.indexOf('&')>=0)?temp.indexOf('&'):temp.length)));
    for (var i=0;i<temp.length;i++){
      if (temp.charAt(i) == "+") {
        temp = temp.substring(0, i) + " " + temp.substring(i+1, temp.length+1);
      }
    }
  }else{ 
    temp = '';
  } 
  return unescape(temp);
}


var page = getStringVar("b");

//if(page=="43969"){
	var listing_stories = document.getElementById('icl_container_fea').getElementsByTagName('ul');
	
	for (i=0;i<listing_stories.length;i++) {
		listing_stories[i].style.display = "none";
	}
	
	var random = Math.round(listing_stories.length*Math.random())
	if(random==listing_stories.length){ random = 0; }
	listing_stories[random].style.display = 'block';
//}