// JavaScript Document

$(document).ready(function(){
	
	//build video with
	var videoWith = 0;
	
	/*$("#videoPosts li").each(function(){
		
		videoWith = videoWith + $(this).outerWidth();
	});*/
	
	//$("#videoPosts").width(videoWith);
	
	$("#videoPane").jScrollPane();
		
	$("#picturePane").jScrollPane()
	
	
	//set up vote results
	 //-----------------------------------------------------------------
	 $("#pollHolder #results").live("click",function(){
		 
		 
		 
		 var target = $(this).attr("data-poll-results");
		 
		 
		 
		 if (target != ""){
			 
			 
			 $.post(target,function(data){
				
				$("#pollHolder #poll-voting").html(data);
			 });
		 }
		 
		 
	 });
	
});
