function noTopLevelLinks() { 
	var noLink = new Array('page-item-150','page-item-155','page-item-166','page-item-185','page-mehran','page-item-8420');
	
	if (!document.getElementsByTagName) return; 
	var anchors = document.getElementsByTagName("li"); 
	
	for (var i=0; i<anchors.length; i++) { 
		var anchor = anchors[i]; 
		var className;
		className = anchor.className;

		for (x in noLink){
			if(className.indexOf(noLink[x])!=-1)
				anchor.firstChild.href = "#"; 
		}
	} 
} 

function stripeTable(){
	if (!document.getElementsByTagName) return; 
	var rows = document.getElementsByTagName("tr"); 
	
	for (var i=0; i<rows.length; i++) { 
		if(i%2!=0){
			rows[i].className = "alt";
		}
	}	
}

function myFunctions(){
	noTopLevelLinks();	
	stripeTable();	
}
window.onload = myFunctions;;
/*window.onload = ;*/