$(function() {
  $("a#lang_toggle").click(function() {
    if($("div#error_lang_spa").is(":visible")) {
      $("div#error_lang_spa").fadeOut('fast', function() {
        $("div#error_lang_def").fadeIn('fast');
        document.title = "The website address you entered cannot be found.";
        $("a#lang_toggle").html("Espa&ntilde;ol");
      });
    }
    else {
      $("div#error_lang_def").fadeOut('fast', function() {
        $("div#error_lang_spa").fadeIn('fast');
        document.title = "No se ha hallado ning&uacute;n sitio web que tenga la direcci&oacute;n que pusiste.";
		$("a#lang_toggle").html("English");
      });
    }
    return false;
  });
  
  $("a#security, a#conditions").click(function() {
    window.open($(this).attr('href'), 'popupWindow', 'width=640, height=550, resizable=1, status=1, toolbar=0, menubar=0, scrollbars=1, top=50, left=40');
    return false
  });
});

