<!--//Husain's Code
var anc = new Array();
//Null values
anc[0] = "";
anc[1] = "video1";
anc[2] = "video2";
anc[3] = "video3";
anc[4] = "video4";
anc[5] = "video5";
anc[6] = "video6";
anc[7] = "video7";
anc[8] = "video8";




//Other Values
ctr = 1;
prev_ctr = 1;

path = "pages/videos/";
ext = ".html";


///Function for Arrows
function getPageDr(direction){
	if(direction == "down"){
		ctr++;
		if(ctr == anc.length){
			ctr = anc.length-1;
			return; 
		}else{
			fullPath = anc[ctr] + ext;
			getpage.load('inside', fullPath, true);
		}
		
	}else{
		ctr--;
		if(ctr == 0){
			ctr = 1;
			return;
		}else{
			fullPath = anc[ctr] + ext;
			getpage.load('inside', fullPath, true);
		}
	}
}



