$(document).ready(function(){
	var i = 0;
	var total = 0;
	var tallRow = 0;
	var numRows = 0;
	$(".vidthumb").each(function(){
		i++;
	});
	total = 160*Math.ceil(i/3);
	//total += (numRows*15);
	var fullHeight = $("#vidcontent").height();
	

	var so = new SWFObject("/flash/videoplayer.swf","video","530","240","9");
	so.addParam("wmode","transparent");
	so.addVariable("videoPath","/flash/video/SSfull.flv");
	so.addVariable("skinPath","/flash/video/peepskin2.swf");
	so.write("header");


	
	$("#innercontent").animate({height: (fullHeight+total) + "px"},fullHeight*10);
	$("#dither").css({ height: $(document).height() });
	
	$(".vidthumb").click(function(){
		$(".vidthumb").each(function(){
			$(this).removeClass("active");
		});
		$(this).addClass("active");
		var so = new SWFObject("/flash/videoplayer.swf","video","530","240","9");
		so.addParam("wmode","transparent");
		so.addVariable("videoPath","/flash/video/" + $(this).children("img").attr("alt"));
		so.addVariable("skinPath","/flash/peepskin2.swf");
		so.write("header");
	});
	
});