
/* ---------------------------------------------------------- */

$(document).ready(function(){

	$('.note_stars').click(function(){

		var data 	= ( this.id ).split( '_' );
		var id 	= data[1];
		var score 	= data[2];

		rate( id , score );
	});


	$('#light_off').click(function(){
		$('#black_screen').fadeIn( 500 );
	});

	$('#black_screen').click(function(){
		$('#black_screen').fadeOut( 500 );
	});

});

/* ---------------------------------------------------------- */

var nb_etoiles	= 3;
var etoile_0	= _ROOT + '/images/star_0.png';
var etoile_1	= _ROOT + '/images/star_1.png';

stars = function( id , n ){

	for( i=1 ; i<(nb_etoiles+1) ; i++ )
	   {
		$( '#' + id + '_' + i ).attr({src:etoile_0});
	   }
	for(i=1 ; i<=n ; i++)
	   {
		$( '#' + id + '_' + i ).attr({src:etoile_1});
	   }
};


/* ---------------------------------------------------------- */

rate = function( id , score ){

	$.ajax({
		url: 'video_en_ligne.php?video_id=' + id + '&rate=' + score,
		success: function(data) {
			$( '#rating' ).html( data );
			setTimeout( "$( '#rating_msg_thx' ).fadeOut(500);" , 2000 );
		}
	});
};

/* ---------------------------------------------------------- */


request = function( url , div , check ) {

	if( ( check != undefined ) && ( check !="" ) )
	  {
		if( !confirm( check ) )
		  {
			return false;
		  }
	  }

	$.get( url , function(data) {
		$( "#" + div ).html( data );
	});


};

/* ---------------------------------------------------------- */
