$(function() {
   if( $.browser.opera ) {
      var clss = 'image-border-css';
      $('img.' + clss).each( function() {
         $(this).replaceWith('<span class="' + clss + '" style="background:url(' + $(this).attr('src') + ') 0 0 no-repeat; height:' + $(this).height() + 'px; width:' + $(this).width() + 'px;"></span>');
      });
   }
   
   $( 'form[name="order"]' ).validate(
      { highlight: function(element, errorClass) {} }
   );
});



