$(document).ready(function(){
        var url = TOPIC_BOOKMARK_URL || '../bookmark/';
	$('#bookmark-btn').click(function () {
                $.ajax({'url': url, 'type': 'POST'});
		if( $('#bookmark-btn').hasClass("unfilled") ) {
			$(this).removeClass("unfilled");
			$(this).addClass("filled");
    		} else if( $('#bookmark-btn').hasClass("filled") ) {
			$(this).removeClass("filled");
			$(this).addClass("unfilled");
    		};
    	});
});
