function ApplyFixes()
{
  // for IE only!
  /*@cc_on
    @if (@_jscript)
      $('ul.top_navi li').hover(function(){$(this).addClass("hover");},function(){$(this).removeClass("hover");});
    @end
  @*/


  $("select.submitonchange").change(function(){this.form.submit();})
  $("input.submitonclick").click(function(){this.form.submit();})

  $("input.submitonclick2").click(function(){
    /*alert($('input[name=auto_bester_typ]').val());*/
    /* alert($('input:radio[name=behaelter_type]:checked').val()); */
    /* this.form.auto_bester_typ.value = $("#behaelter_type").value; */
    this.form.append('<input type="hidden" name="auto_bester_typ2" id="auto_bester_typ" value="'+$('input[name=auto_bester_typ]').val()+'" />');
    this.form.submit();
  })

  $(".hidewithjs").hide();
  $(".showwithjs").show();
  $(".removewithjs").remove();

}
try
{
  $(document).ready(ApplyFixes);

  // IE Hover Flicker Fix zusätzlich zum Serverfix
  document.execCommand("BackgroundImageCache",false,true);
}
catch(e)
{
}

