/**
 * @author
 */
$(document).ready(function(){
  //hover fix for input elements for ie 6
  if($.browser.msie){
    $(":submit").hover(
      function () {
        $(this).addClass("input-hover");
      }, 
      function () {
        $(this).removeClass("input-hover");
      }
    );
  }
});
