$(document).ready(function()
{
  $('a#bcktotop').click(function(){
  $.scrollTo( 0, 500);
  return false;
  });
});

$(document).ready(function() {
  //$("#extra").hide();
  $("#btn_adv-search").click(function()
  {
    $("#extra").slideToggle("slow",function(){
      $("#btn_adv-search a").toggleClass('open', $(this).is(':visible'));
    }); 
  });
}); 

$(function($){
  $('input.f-company_name').example(function() {
     return $(this).attr('title'); 
  });
  $('input.f-first_name').example(function() {
     return $(this).attr('title'); 
  });
  $('input.f-last_name').example(function() {
     return $(this).attr('title'); 
  });
  $('input.f-email').example(function() {
     return $(this).attr('title'); 
  });
  $('input.f-tel').example(function() {
     return $(this).attr('title'); 
  });
  $('textarea.f-comments').example('Comment (optional)');
});

