
$(document).ready(function() {

  $('a.top').click(function(){
    $('html,body').animate({scrollTop:0},'slow');
    return false;
  });

  $('#language').change(function() {
    location.href= $('#language option:selected').attr('title');
  });

  $('.send_form').click(function() {
    $('#'+$(this).parents("form").attr("id")).submit();
  });

  

  $('.check_form').click(function(evento) {
    if(check_form()) {
      $('#'+$(this).parents("form").attr("id")).submit();
    } else {
      evento.preventDefault();
    }
  });

  $('.delete_form').click(function(evento) {
    delete_form();
    evento.preventDefault();
  });

   // Lava menu: x hover, mostrar submenus, moure box
  var style = 'easeOutExpo';
 
 //$('a.htmlvideo').colorbox();
 $('a.htmlvideo').colorbox({width:"670",height:"420",iframe:true});
  $('a#google_maps').colorbox({width:"670",height:"670",iframe:true});
/*$("a[rel='colorbox']").colorbox({});
				  $("a[rel='colorbox-gal']").colorbox({});
				  $("a[rel='colorbox-html']").colorbox({width:"650",height:"650", iframe:true});
				  $("a[rel='colorbox-htmlvideo']").colorbox({fixedWidth:"630",fixedHeight:"390", iframe:true});*/
}); 
/**
 * Enviar formulari
 */

function send_form(name) {
document.getElementById(name).submit();
}

