jQuery.noConflict();

jQuery(document).ready(function() {
		jQuery(".rateboxes li img").click(function (ev) {
			jQuery.post( "/ajax/rate", 
							{ score: jQuery(ev.target).attr("rel"), id: jQuery(ev.target).parent().parent().attr("id") }, 
							function(payload) {
								jQuery(ev.target).parents().find(".rate").replaceWith(payload);
							});
		});

});