// by kormikez (c) 2008

function Vote5(){
	RememberPrevStars();
	document.S0.src='gfx/star-1-vote.gif';
	document.S1.src='gfx/star-2-vote.gif';
	document.S2.src='gfx/star-1-vote.gif';
	document.S3.src='gfx/star-2-vote.gif';
	document.S4.src='gfx/star-1-vote.gif';
	document.S5.src='gfx/star-2-vote.gif';
	document.S6.src='gfx/star-1-vote.gif';
	document.S7.src='gfx/star-2-vote.gif';
	document.S8.src='gfx/star-1-vote.gif';
	document.S9.src='gfx/star-2-vote.gif';
}

function Vote4(){
        RememberPrevStars();
        document.S0.src='gfx/star-1-vote.gif';
        document.S1.src='gfx/star-2-vote.gif';
        document.S2.src='gfx/star-1-vote.gif';
        document.S3.src='gfx/star-2-vote.gif';
        document.S4.src='gfx/star-1-vote.gif';
        document.S5.src='gfx/star-2-vote.gif';
        document.S6.src='gfx/star-1-vote.gif';
        document.S7.src='gfx/star-2-vote.gif';
        document.S8.src='gfx/star-empty-1.gif';
        document.S9.src='gfx/star-empty-2.gif';
}

function Vote3(){
        RememberPrevStars();
        document.S0.src='gfx/star-1-vote.gif';
        document.S1.src='gfx/star-2-vote.gif';
        document.S2.src='gfx/star-1-vote.gif';
        document.S3.src='gfx/star-2-vote.gif';
        document.S4.src='gfx/star-1-vote.gif';
        document.S5.src='gfx/star-2-vote.gif';
        document.S6.src='gfx/star-empty-1.gif';
        document.S7.src='gfx/star-empty-2.gif';
        document.S8.src='gfx/star-empty-1.gif';
        document.S9.src='gfx/star-empty-2.gif';
}

function Vote2(){
        RememberPrevStars();
        document.S0.src='gfx/star-1-vote.gif';
        document.S1.src='gfx/star-2-vote.gif';
        document.S2.src='gfx/star-1-vote.gif';
        document.S3.src='gfx/star-2-vote.gif';
        document.S4.src='gfx/star-empty-1.gif';
        document.S5.src='gfx/star-empty-2.gif';
        document.S6.src='gfx/star-empty-1.gif';
        document.S7.src='gfx/star-empty-2.gif';
        document.S8.src='gfx/star-empty-1.gif';
        document.S9.src='gfx/star-empty-2.gif';
}

function Vote1(){
        RememberPrevStars();
        document.S0.src='gfx/star-1-vote.gif';
        document.S1.src='gfx/star-2-vote.gif';
        document.S2.src='gfx/star-empty-1.gif';
        document.S3.src='gfx/star-empty-2.gif';
        document.S4.src='gfx/star-empty-1.gif';
        document.S5.src='gfx/star-empty-2.gif';
        document.S6.src='gfx/star-empty-1.gif';
        document.S7.src='gfx/star-empty-2.gif';
        document.S8.src='gfx/star-empty-1.gif';
        document.S9.src='gfx/star-empty-2.gif';
}


function RememberPrevStars(){
	pS0 = document.S0.src;
        pS1 = document.S1.src;
        pS2 = document.S2.src;
        pS3 = document.S3.src;
        pS4 = document.S4.src;
        pS5 = document.S5.src;
        pS6 = document.S6.src;
        pS7 = document.S7.src;
        pS8 = document.S8.src;
        pS9 = document.S9.src;
}

function LoadPrevStars(){
        document.S0.src = pS0;
        document.S1.src = pS1;
        document.S2.src = pS2;
        document.S3.src = pS3;
        document.S4.src = pS4;
        document.S5.src = pS5;
        document.S6.src = pS6;
        document.S7.src = pS7;
        document.S8.src = pS8;
        document.S9.src = pS9;

}

