function commentToggle() {
  jQuery('.togglebutton').click(function() {
    jQuery('.respond').hide();
    jQuery('.togglebutton').show();
    jQuery(this).hide();
    jQuery('.respond').hide();
    jQuery(this).parent().parent().children('.respond').show();
    return false;
  });
}

function reviewHover() {
 jQuery('#cameras .rumorsstarsbox').hover(function() {
  jQuery(this).find('.writeyourown').show().css({ display: "block" });
 }, function() {
  jQuery(this).find('.writeyourown').hide().css({ display: "none" });
 });
}

jQuery(document).ready(function() {
  commentToggle();
  reviewHover();
});


