$(document).ready(function ()
{
  $('#rightColumn h3').click(function ()
	{
    //$(this).siblings('h3').next('div').slideUp();
    $(this).next('div.rightColumnContent').slideToggle(200);
  });
});

$(document).ready(function ()
{
  $("a.youTubeVideo").click(function()
  {

      $.fancybox({

        'padding'             : 0,
        'autoScale'   				: false,
        'transitionIn'        : 'none',
        'transitionOut'       : 'none',
	      'overlayColor'        : '#000',
	      'overlayOpacity'      : '0.75',
        'title'               : this.title,
        'width'               : 640,
        'height'              : 390,
        'href'                : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
        'type'                : 'swf',    // <--add a comma here
        'swf'                 : {'allowfullscreen':'true'} // <-- flashvars here

      });



      return false;

    });
	});
