// other  //


//////////////////////////////////////////////
//    Javascript for star ratings           //
//////////////////////////////////////////////


function rate(mov_id, stars){
	// initialize
	var star_id = mov_id+'_star_0';
	if(stars == 0){
		document.getElementById(star_id).src='http://image.vodconcepts.com/vodimages/images/star_rate_none_on.png';
		}
	else{
		document.getElementById(star_id).src='http://image.vodconcepts.com/vodimages/images/star_rate_none.png';
		}

	star_id = mov_id+'_star_1';
	if(stars >= 1){
		document.getElementById(star_id).src='http://image.vodconcepts.com/vodimages/images/star_rate_yellow.png';
		}
	else{
		document.getElementById(star_id).src='http://image.vodconcepts.com/vodimages/images/star_rate_grey.png';
		}
	
	star_id = mov_id+'_star_2';
	if(stars >= 2){
		document.getElementById(star_id).src='http://image.vodconcepts.com/vodimages/images/star_rate_yellow.png';
		}
	else{
		document.getElementById(star_id).src='http://image.vodconcepts.com/vodimages/images/star_rate_grey.png';
		}
	
	star_id = mov_id+'_star_3';
	if(stars >= 3){
		document.getElementById(star_id).src='http://image.vodconcepts.com/vodimages/images/star_rate_yellow.png';
		}
	else{
		document.getElementById(star_id).src='http://image.vodconcepts.com/vodimages/images/star_rate_grey.png';
		}
		
	star_id = mov_id+'_star_4';
	if(stars >= 4){
		document.getElementById(star_id).src='http://image.vodconcepts.com/vodimages/images/star_rate_yellow.png';
		}
	else{
		document.getElementById(star_id).src='http://image.vodconcepts.com/vodimages/images/star_rate_grey.png';
		}
		
	star_id = mov_id+'_star_5';
	if(stars == 5){
		document.getElementById(star_id).src='http://image.vodconcepts.com/vodimages/images/star_rate_yellow.png';
		}
	else{
		document.getElementById(star_id).src='http://image.vodconcepts.com/vodimages/images/star_rate_grey.png';
		}
	
	}

function original_rate(mov_id, rating, type){
	// mov_id = movie id
	// rating = movie rating. ex 0, 1, 2, 3, 3.5, 4.5, 5
	// type = user or group << determines star color
		
	// initialize
	var star_id = mov_id+'_star_1';
	var star_id_none = mov_id+'_star_0';
	var color = 'orange';
	
	if (type == 'user')
		{
		color = 'yellow';
		}
	else
		{
		if (type == 'guess')
			{
			//color = 'orange';	
			}
		}
	
	if (type == 'user' || type == 'guess')
		{
		if (rating == 0)
			{
			document.getElementById(star_id_none).src='http://image.vodconcepts.com/vodimages/images/star_rate_none_on.png';
			}
		else
			{
			document.getElementById(star_id_none).src='http://image.vodconcepts.com/vodimages/images/star_rate_none.png';	
			}
		}
	else
		{
		document.getElementById(star_id_none).src='http://image.vodconcepts.com/vodimages/images/star_rate_none.png';	
		}
	
	if(rating == 0){
		document.getElementById(star_id).src='http://image.vodconcepts.com/vodimages/images/star_rate_grey.png';
		star_id = mov_id+'_star_2';
		document.getElementById(star_id).src='http://image.vodconcepts.com/vodimages/images/star_rate_grey.png';
		star_id = mov_id+'_star_3';
		document.getElementById(star_id).src='http://image.vodconcepts.com/vodimages/images/star_rate_grey.png';
		star_id = mov_id+'_star_4';
		document.getElementById(star_id).src='http://image.vodconcepts.com/vodimages/images/star_rate_grey.png';
		star_id = mov_id+'_star_5';
		document.getElementById(star_id).src='http://image.vodconcepts.com/vodimages/images/star_rate_grey.png';
		}
	
	if(rating == .5){
		document.getElementById(star_id).src='http://image.vodconcepts.com/vodimages/images/star_rate_' + color + '_half.png';
		}
	else if(rating >= 1){
		document.getElementById(star_id).src='http://image.vodconcepts.com/vodimages/images/star_rate_' + color + '.png';
		}
	else{
		document.getElementById(star_id).src='http://image.vodconcepts.com/vodimages/images/star_rate_grey.png';
		}
		
	star_id = mov_id+'_star_2';
	if(rating == 1.5){
		document.getElementById(star_id).src='http://image.vodconcepts.com/vodimages/images/star_rate_' + color + '_half.png';
		}
	else if(rating >= 2){
		document.getElementById(star_id).src='http://image.vodconcepts.com/vodimages/images/star_rate_' + color + '.png';
		}
	else{
		document.getElementById(star_id).src='http://image.vodconcepts.com/vodimages/images/star_rate_grey.png';
		}
		
	star_id = mov_id+'_star_3';	
	if(rating == 2.5){
		document.getElementById(star_id).src='http://image.vodconcepts.com/vodimages/images/star_rate_' + color + '_half.png';
		}
	else if(rating >= 3){
		document.getElementById(star_id).src='http://image.vodconcepts.com/vodimages/images/star_rate_' + color + '.png';
		}
	else{
		document.getElementById(star_id).src='http://image.vodconcepts.com/vodimages/images/star_rate_grey.png';
		}
		
	star_id = mov_id+'_star_4';
	if(rating == 3.5){
		document.getElementById(star_id).src='http://image.vodconcepts.com/vodimages/images/star_rate_' + color + '_half.png';
		}
	else if(rating >= 4){
		document.getElementById(star_id).src='http://image.vodconcepts.com/vodimages/images/star_rate_' + color + '.png';
		}
	else{
		document.getElementById(star_id).src='http://image.vodconcepts.com/vodimages/images/star_rate_grey.png';
		}
		
	star_id = mov_id+'_star_5';
	if(rating == 4.5){
		document.getElementById(star_id).src='http://image.vodconcepts.com/vodimages/images/star_rate_' + color + '_half.png';
		}
	else if(rating >= 5){
		document.getElementById(star_id).src='http://image.vodconcepts.com/vodimages/images/star_rate_' + color + '.png';
		}
	else{
		document.getElementById(star_id).src='http://image.vodconcepts.com/vodimages/images/star_rate_grey.png';
		}
	}