$(document).ready(function() { $('a.iframe, a.iframeopener').fancybox({ 'frameHeight':380, 'enableEscapeButton': true, 'overlayOpacity': .7, 'overlayColor': '#000' }); $('#cameraSubmit').remove(); $('form.ajax').live('submit', function() { $('#mesaje').hide(300); $.post($(this).attr('action') + '&ajax=true', $(this).serialize(), null, 'script'); $('#mesaje').replaceWith('Cargando...'); return false; }); $('a.ajax').live('click', function() { $.getScript($(this).attr('href') + '&ajax=true&id=' + $(this).attr('id')); $(this).replaceWith('Cargando...'); return false; }); $('#ordenar').live('change', function() { $('#cameraForm').submit(); }); $('#camara').live('change', function() { $('#cameraForm').submit(); }); Cufon.replace('h2, h3, #footer .col01 h4, #footer .col02 h4 span, legend, .campo label, .comparte, button, .enlace_megusta, #cufongris'); } );