function fisheyemethis(thisitem) {
	if (thisitem) {
		thisitem.style.fontSize = "14pt";
		actElement = thisitem.previousSibling;
	
		var i = 0;
	 			
		while(actElement) {  	
			if(actElement.tagName=="A") {
				if (i == 0)
					actElement.style.fontSize = "10pt"; 
				if (i == 1)
					actElement.style.fontSize = "8pt";
				if (i == 2)
					actElement.style.fontSize = "6pt";
	 			    	
				i++;	    	
			}
	 		  		
			if (i >= 8)
				break;
	 		  				
			actElement = actElement.previousSibling;	
		}
	 			
	 			
		actElement = thisitem.nextSibling;
		var i = 0;
	 			
		while(actElement) {
			if(actElement.tagName=="A") {
				if (i == 0)
					actElement.style.fontSize = "10pt"; 
				if (i == 1)
					actElement.style.fontSize = "8pt";
				if (i == 2)
					actElement.style.fontSize = "6pt";
	 			    	
				i++;	    	
			}
	 		  		
			if (i >= 8)
				break;
	 		  				
			actElement = actElement.nextSibling;	
		}
 	}
}



	
function unfisheyemethis(thisitem) {
	if (thisitem) {
		thisitem.style.fontSize = "20pt";
		actElement = thisitem.previousSibling;
		var i = 0;
	 			
		while(actElement) {
			if(actElement.tagName=="A") {
				if (i == 0)
					actElement.style.fontSize = "20pt"; 
				if (i == 1)
					actElement.style.fontSize = "20pt";
				if (i == 2)
					actElement.style.fontSize = "20pt";
				if (i == 3)
				
				i++;	    	
			}
	 		  		
			if (i >= 8)
				break;
	 		  				
			actElement = actElement.previousSibling;	
		}
	 			
	 			
		actElement = thisitem.nextSibling;
		var i = 0;
	 			
		while(actElement) {
			if(actElement.tagName=="A") {
				if (i == 0)
					actElement.style.fontSize = "20pt"; 
				if (i == 1)
					actElement.style.fontSize = "20pt";
				if (i == 2)
					actElement.style.fontSize = "20pt";
					
				i++;	    	
			}
	 		  		
			if (i >= 8)
				break;
	 		  				
			actElement = actElement.nextSibling;	
		}
	}
}
