function SERVICE() {
  this.init = function() {	
    jQuery('a.stars').toggle(function(e) {
      jQuery(this).addClass('bold');
      jQuery(this).next('div').show('fast');
	},function() {
      jQuery(this).removeClass('bold');
      jQuery(this).next('div').hide('fast');
	});
    
    jQuery('a.comment').toggle(function(e) {
      jQuery(this).addClass('bold');
      jQuery('.comment_formbox').show('fast');
    },function() {
      jQuery(this).removeClass('bold');
      jQuery('.comment_formbox').hide('fast');
    });
   
    jQuery('a.recommend').toggle(function(e) {
      jQuery(this).addClass('bold');
      jQuery('.recommend_formbox').show('fast');
    },function() {
      jQuery(this).removeClass('bold');
      jQuery('.recommend_formbox').hide('fast');
    });
    
    jQuery('a.commentlist_toggle').toggle(function(e) {
      jQuery(this).addClass('bold');
      jQuery('.commentbox_all').show('fast');
    },function() {
      jQuery(this).removeClass('bold');
      jQuery('.commentbox_all').hide('fast');
    });
  }
}

var service = new SERVICE();
jQuery(document).ready(function() {
  service.init();
});