$(document).ready(
	function(){
		$(".toggler").click( function() { 
			$(".submenu").hide();
			$("#"+$(this.parentNode).attr("id")+"_submenu").fadeIn("fast");
			return false;
		});
		$(".toggler2").click(function() {
			$("."+this.rel).toggle("slow");
			return false;
		});
	}
);

function vote(rate,id){
	$.ajax({
		url:     "/ratings/vote/" + rate + "/" + id,
		cache:   false,
		success: function(html){
			$("#u_votes").html(html);
			$.ajax({
				url:     "/ratings/result/" + id,
				cache:   false,
				success: function(html){
					$("#g_votes").html(html);
				}
			});
		}
	});
}

