
$(document).ready(function() {
	
  $("#savetofav").click(function(){
  	$.post("includes2/favs_video.php", {favs:0}, function(res) {
       if (res == "-1") {
         location.href = "login.php";
       }
       else {
  	     if (res != "1") {
		     $("#savetofav span").html("Add this Scene<br />to Favorites");
	     } else {
		     $("#savetofav span").html("Remove this Scene<br />from Favorites");
  	     }
       }
     });
    return false;
  });


  $("#video_rating_buttons a").click(function(){
  	var rat = parseInt($(this).attr("name"));
   $.post("/includes2/ratevideo.php", {rating: rat}, function(xml) {
       // format and output result
       var r = parseFloat($("average", xml).text());
       var c = parseInt($("count", xml).text());

	   $("#video_rating_info").html("Overall Rating: <span>"+r+"</span> / "+c+" ratings");

     });
    return false;
  });

 });
