$(document).ready(function (){
	
	//Tabs
	$(".TabsLinks a").click(function (){
		$(".Tab_Layer").hide();
		$("#"+this.rel).show();
		
		jQuery.each($(".TabsLinks a"), function() {
			$(this).removeClass();
			$(this).addClass(this.rel+"_off");
		});
		$(this).removeClass();
		$(this).addClass(this.rel+"_on");
		return false;
	});
});


// JavaScript Votaciones
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);
				}
			});
		}
	});
}
