// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

function addFavorite(content){	
	$.post('/user_favorites/', {'user_favorite[content_id]':content},function(data){
        $("#fav").replaceWith(data);
    $("#favtext").fadeOut(2000);
	})
}
function report(content){    
    $.get('/content/report/'+content,function(data){
        $("#report").replaceWith(data);
    $("#reported").fadeOut(2000);        
    })

}