$(document).ready(function(){

//Vote stars
	//Default:
	var stars=$("#vote").attr("value");
	for (i=1;i<=stars;i++) {
		$("a#vote"+i).addClass("hover");
	}	
	
	$("a#vote1").mouseover(function(){
		$(this).addClass("hover");
		$("a#vote2").removeClass("hover");
		$("a#vote3").removeClass("hover");
		$("a#vote4").removeClass("hover");
		$("a#vote5").removeClass("hover");
		$("#vote").attr({value : '1'});		
	})
	$("a#vote2").mouseover(function(){
		$("a#vote1").addClass("hover");		
		$(this).addClass("hover");
		$("a#vote3").removeClass("hover");
		$("a#vote4").removeClass("hover");
		$("a#vote5").removeClass("hover");
		$("#vote").attr({value : '2'});
	})
	$("a#vote3").mouseover(function(){
		$("a#vote1").addClass("hover");
		$("a#vote2").addClass("hover");
		$(this).addClass("hover");		
		$("a#vote4").removeClass("hover");
		$("a#vote5").removeClass("hover");
		$("#vote").attr({value : '3'});
	})
	$("a#vote4").mouseover(function(){
		$("a#vote1").addClass("hover");
		$("a#vote2").addClass("hover");
		$("a#vote3").addClass("hover");
		$(this).addClass("hover");		
		$("a#vote5").removeClass("hover");
		$("#vote").attr({value : '4'});
	})
	$("a#vote5").mouseover(function(){
		$("a#vote1").addClass("hover");
		$("a#vote2").addClass("hover");
		$("a#vote3").addClass("hover");
		$("a#vote4").addClass("hover");
		$("#vote").attr({value : '5'});
		$(this).addClass("hover");
	})
	$("a.vote_link").click(function(event){
		event.preventDefault();
	});
	
});
	
	

