

//preload
if (document.images) 
{
   img1 = new Image();
   img2 = new Image();
   img3 = new Image();
   img4 = new Image();
   img5 = new Image();
   img1.src = "http://images.g4tv.com/images/2007/ninjawarrior/stars2/vote_1.jpg";
   img2.src = "http://images.g4tv.com/images/2007/ninjawarrior/stars2/vote_2.jpg";
   img3.src = "http://images.g4tv.com/images/2007/ninjawarrior/stars2/vote_3.jpg";
   img4.src = "http://images.g4tv.com/images/2007/ninjawarrior/stars2/vote_4.jpg";
   img5.src = "http://images.g4tv.com/images/2007/ninjawarrior/stars2/vote_5.jpg";
}

var xmlHttpReq = false;
// Mozilla/Safari
if (window.XMLHttpRequest) 
{
    xmlHttpReq = new XMLHttpRequest();
}
// IE
else if (window.ActiveXObject) 
{
    xmlHttpReq = new ActiveXObject("Microsoft.XMLHTTP");
}


function ninjaOn(strID,intThreshold)
{
    objImg = document.getElementById(strID);
    objImg.src="http://images.g4tv.com/images/2007/ninjawarrior/stars2/vote_" + intThreshold + ".jpg";

}

function ninjaOff(strID)
{
    objImg = document.getElementById(strID);
    objImg.src="http://images.g4tv.com/images/2007/ninjawarrior/stars2/" + objImg.className + ".jpg";
}

function ninjaVote(strID,intRating,intEntityKey,intUserKey)
{
    objImg = document.getElementById(strID);
    objImg.className = "vote_" + intRating;
    //
    //Vote
    //
    paramz = 'rating=' + intRating + '&entitykey=' + intEntityKey + '&userkey=' + intUserKey + '&entitytype=Video';
    var buzzJax = new Ajax.Request('http://www.g4tv.com/ajax_vote.aspx',{parameters: paramz, onSuccess:handlerFunc, onFailure:errFunc});
}

var handlerFunc = function(t)
{
    //alert(t.responseText);
}

var errFunc = function(t)
{
    //alert('Error: ' + t.status + " --- " + t.statusText);
}
