$(document).ready(function() {


  if ($('#home').length>0) { 
    
    $('#slideshow').cycle({
		fx: 'fade' 
	});

  }// end if home(homepage)
  
  // lightbox for photos in gallery
  $("ul.list-photos a").fancybox();
  
  // lightbox for photos in gallery
  $("ul.list-photos-legacy a").fancybox();

  // lightbox for photos in gallery
  $("ul.list-videos a").click(function() {
	$.fancybox({
			'padding'		: 10,
			'autoScale'		: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'title'			: this.title,
			'width'		: 680,
			'height'		: 495,
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			: 'swf',
			'swf'			: {
			   	 'wmode'		: 'transparent',
				'allowfullscreen'	: 'true'
			}
		});

	return false;
});
   
 

	// ----------------  CUFON  --------------------------//


	Cufon.replace('#content h1', {fontFamily: 'BankGothic Lt BT'});
	Cufon.replace('ul#main-nav li', {hover: true,fontFamily: 'BankGothic Lt BT'});
	
	Cufon.replace('.title');
   
    
});



