// JavaScript Document
	function displayRightSide() {
		var max = 10;
		var list = new Array();
		var listStr = "";
		var randNum = 11;
		var alreadyExists;		
		
		//generate a list of unique random numbers
		while (list.length <= 3) {
			do {				
				randNum = (Math.floor((max+1)*Math.random()))+1;					
				numberOK = true;				
				for(j=0; j<list.length; j++) {
					if (list[j] == randNum) numberOK = false;	
				}						
			} while (numberOK == false)					
			list.push(randNum);
		}	
		
		//display all the panels matching the unique IDs we have generated above
		for(j=0; j<list.length; j++) {
			$(".panel_Right[rel='"+list[j]+"']").fadeIn();
		}
	}		
	
	$(document).ready(function(){ 
		displayRightSide();
	});	
