var video_rating_loading_msg='<img src='+baseurl+'/templates/images/loading.gif>';function video_rating_success(msg)
{$('#video-rating').html(msg);}
function video_rating_error(msg)
{alert('failure')}
function video_rate(video_id,new_rate)
{video_rating_loading();var sUrl=baseurl+'/ajax/video_rating.php';var postData='video_id='+video_id+'&new_rate='+new_rate;$.ajax({type:"POST",url:sUrl,data:postData,dataType:'html',success:video_rating_success,error:video_rating_error});}
function video_rating_loading(){$('#video_rating').html(video_rating_loading_msg);}
function inappropriate()
{$("#video-tools-feedback").slideDown('fast');}
function inappropriate_cancel()
{$("#video-tools-feedback").slideUp('fast');}
function video_add_favorite(video_id)
{var sUrl=baseurl+'/ajax/video_add_favorite.php';var postData="video_id="+video_id;$.ajax({type:"POST",url:sUrl,data:postData,dataType:'html',success:video_add_favorite_success,error:video_add_favorite_error});}
function video_add_favorite_success(msg)
{$('#video-tools-result').fadeIn("slow");$('#video-tools-result').html(msg);}
function video_add_favorite_error()
{alert('Ajax Error');}
