/*

    <script type="text/javascript">
    $(document).ready(function(){
        $('#orders').yingizFormHints();
    });
    </script>


*/
$.fn.yingizFormHints = function(){
  $('.yingizFormHint').hide();

  /*input fields*/
  $(":input", $(this)).focus(function(){
    var hintElement = $(this).attr('id')+'_hint_i';
    var name = $(this).attr('id');
    x = $(this).position().left;
    y = $(this).position().top;
    width = $(this).width()+20;
    $('#'+hintElement).css({ position: "absolute", left: x+width, top: y+1 });
    $('#'+hintElement).fadeIn("slow");
  }).blur(function() {
    var hintElement = $(this).attr('id')+'_hint_i';
    var name = $(this).attr('id');
    $('#'+hintElement).fadeOut("slow");

  });

};
