$(function() {
  $('#search-box').focus(function() {
    $('#search-form').addClass('searchMode');
    if ($(this).val() == 'Find your sex toy...') {
      $(this).val('');
    }
  }).blur(function() {
    $('#search-form').removeClass('searchMode');
    if ($(this).val() == '') {
      $(this).val('Find your sex toy...');
    }
  });
  $('#mailing-list-box').focus(function() {
    $('#mailing-list-form').addClass('textMode');
    if ($(this).val() == 'Enter your email for special offers...') {
      $(this).val('');
    }
  }).blur(function() {
    $('#mailing-list-form').removeClass('textMode');
    if ($(this).val() == '') {
      $(this).val('Enter your email for special offers...');
    }
  });
  $('.tinymce-content-block p').each(function() {
    $(this).replaceWith($(this).html());
  });
});
try{
  Typekit.load();
}catch(e){
}

