jQuery(document).ready(function($) { $('a[rel*=facebox]').facebox(); // Tags $('#apariencia').toggle(function() { $("#tags ul").hide().addClass("alt").fadeIn("fast"); }, function() { $("#tags ul").hide().removeClass("alt").fadeIn("fast"); }); $('#importancia').toggle(function() { $("#tags ul li").tsort({order:"desc",attr:"class"}); }, function() { $("#tags ul li").tsort({order:"asc",attr:"class"}); }); $('#abc').toggle(function() { $("#tags ul li").tsort({order:"asc"}); }, function() { $("#tags ul li").tsort({order:"desc"}); }); // Sólo aquellos atributos rel con valor fade sobre los elementos select y a producirán fundido sobre el contenedor contenido $('select').change(function() { if ($(this).attr('rel') == "fade") { $('#contenido').animate({ height: 'hide', opacity: 'hide' }, 'fast', function() { $("#contenido").animate({ height: 'show', opacity: 'show' }, 'fast'); }); } }); $('a').click(function() { if ($(this).attr('rel') == "fade") { $('#contenido').animate({ height: 'hide', opacity: 'hide' }, 'fast', function() { $("#contenido").animate({ height: 'show', opacity: 'show' }, 'fast'); }); } }); }) Shadowbox.init({ players: ["html","iframe"], handleOversize: "resize", showOverlay: false, slideshowDelay: 4, viewportPadding: 20, skipSetup: false, language: 'es', autoplayMovies: true }); function abrirSB(url,titulo) { Shadowbox.open({player: "iframe", content: url, title: titulo, height: 570 , width: 850}); };