function redirect(href) {
  window.location.href = href;
}

function showContactForm()
{
  $('#contact_form_box').attr('class', 'lightbox');
}

function hideContactForm()
{
  $('#contact_form_box').attr('class', 'lightbox hidden');
}

function showLigtbox(id)
{
  $('#lightbox_' + id).removeClass('hidden');
  $("#name").focus();
  
  return false;
}

function hideLigtbox(id)
{
  $('#lightbox_' + id).addClass('hidden');
  return false;
}