jQuery.noConflict();

jQuery(document).ready(function(){
    jQuery('a[rel*=lightbox]').lightbox();

    // clear search box on focus
    jQuery("input#q[name='keywords']").focus(function() {
      if(this.value=="Suchbegriff") this.value="";
    });
})

function doReply(id, formid){
  aText = jQuery("#post_"+id+" .reply a").html();

  if(aText == "Antworten"){
    jQuery("#post_"+id).append(jQuery("#form_"+formid));
    jQuery("#form_"+formid).slideDown("fast");

    jQuery("#form_"+formid+" select").val(""+id+"");
    jQuery(".reply a").html("Antworten");
    jQuery("#post_"+id+" .reply a").html("abbrechen");
  } else {
    jQuery("#form_"+formid).slideUp("fast");
    jQuery("#post_"+id+" .reply a").html("Antworten");
  }
  return false;
}
