$(document).ready(function() { 	
	
		$('a.link-si').click(function(event){
			event.preventDefault();
			var id = $(this).attr("rel");
			$.post(baseUrl + 'votar/index',
			{modulo:'trabajos', trabajoID: id, si:'1', no:'0'},
				
			function(result) {
				
				if(result) {
						
						$('#responseI').html(result);
						$('#responseI').fadeIn(500);	
					}
				});
		});
		
		$('a.link-no').click(function(event){
			event.preventDefault();
			var id = $(this).attr("rel");
			$.post(baseUrl + 'votar/index',
			{modulo:'trabajos', trabajoID: id, si:'0', no:'1'},
				
			function(result) {
				
				if(result) {
						
						$('#responseI').html(result);
						$('#responseI').fadeIn(500);	
					}
				});
		});
		
		$('#responseI').click(function(event){
			$(this).fadeOut(500);
		})
	

}); 






