var sectionvideos="";
var videogalleryid="";
var ld=true;
var pagenumber = 0;
var lastpgoper = "";
function pV(vidurl){
//	$("#videoplayer embed")[0].src=vidurl;
	$("#videoplayer").html('<embed src="'+vidurl+'" type="application/x-shockwave-flash" width="315" height="283" allowscriptaccess="always" allowfullscreen="true"></embed>') ;
}
function updateThumbs(data){
	sectionvideos = data;
	$("#videothumbs").html("");
	$("#videothumbs").html(data);
	if(pagenumber>1) {
		$("#videothumbs").prepend("<img src='/resources/images/vidthbsprev.gif' id='prvv' />");
		$("#prvv").bind("click", function(e){getVideos('p')})
	}
	if($("#videothumbs img").length>7) {
		$("#videothumbs").append("<img src='/resources/images/vidthbsnext.gif' id='nxtv' />");
		$("#nxtv").bind("click", function(e){getVideos('n')})
	}
	if(ld){$("#videothumbs img:first").trigger('click');ld=false;}
}
function getVideos(pa){
	var pno;
	var pct = 8
	if(pa=='p'){
		pno=pagenumber-1;
		pagenumber--;
		lastpgoper = 'p';
	}else{
		pno=pagenumber+1;
		pagenumber++;
		lastpgoper = 'n';
	}
	if(pno>1) pct=7;
//	alert(pno);
	$.get("/pt/vid/getvideos.asp", { page: pno, cat: videogalleryid, count: pct },
	function(data){
		//alert(data);
		
		updateThumbs(data);
	});
}
$(document).ready(function() {
	ld=true;
	var x = getVideos('n');
 });	
	$(function() {
	
		$( "#gal1" ).accessNews({
	        speed : "slow",
			slideBy : 1
	    });
	
	});
