//Global variable definitions
//DB column numbers
var OPT_ID = 0;
var OPT_TITLE = 1;
var OPT_VOTES = 2;

var votedID;

$(document).ready(function()
{	
	if ($(".poll-results").length > 0 ) 
	{
		animateResults();
	};
	$("#tabs").tabs("#tabs div.pane", {tabs: "h2.tabtop", effect: "slide", initialIndex: null});
	 $('.edit').editable('save.php');
});
$(function()
{
	$.Lightbox.construct({
		show_info:	true,
		show_extended_info: true,
		text: 
		{
			image: 'Photo',
			of: 'sur', 
			close: 'fermer', 
			closeInfo: 'Cliquer pour fermer', 
			download: 'Telecharger', 
			help: {
				close:		'Cliquer pour fermer',
				interact:	''
			},
			about: {
				text: 	' ',
				title:	' ',
				link:	' '
			}
		}	
	});
});

function animateResults()
{
	$(".poll-results div").each(function(){
	   var percentage = $(this).next().text();
	   $(this).css({width: "0%"}).animate({
					width: percentage}, 1500);
	});
}
