Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2013
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script type="text/javascript">
  2.     // <![CDATA[
  3.     jQuery(document).ready(function ($) {
  4.         function addColorBox() {
  5.             $("a[rel='colorbox']").colorbox({
  6.                 transition: 'elastic',
  7.                 opacity: '0.7',
  8.                 maxHeight: '90%'
  9.             });
  10.             $("a[rel='colorboxvideo']").colorbox({
  11.                 iframe: true,
  12.                 transition: 'elastic',
  13.                 opacity: '0.7',
  14.                 innerWidth: '60%',
  15.                 innerHeight: '80%'
  16.             });
  17.         }
  18.  
  19.         addColorBox();
  20.     });
  21.     // ]]>
  22. </script>
  23. <script type="text/javascript">
  24.     /* <![CDATA[ */
  25.     jQuery().ready(function () {
  26.         jQuery('#nav-slider a').live('click', function (e) {
  27.             e.preventDefault();
  28.             var link = jQuery(this).attr('href');
  29.             jQuery('#slider').html('<img src="http://reuter.li/wp-content/themes/minimatica/images/loader.gif" style="display:block; margin:173px auto" />');
  30.             jQuery('#slider').load(link + ' #ajax-content', function () {
  31.                 slide();
  32.                 addColorBox();
  33.             });
  34.         });
  35.     });
  36.  
  37.     /* ]]> */
  38. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement