
$(document).ready(function() {



  if ($('#home').length>0) { 

	
	$('#slideshow-wrapper').after('<div id="dots" class="dots clearfix">').cycle({
		        fx:     'none',
		        speed:  500,
		        timeout: 3500,
		        pager:  '#dots',
				cleartypeNoBg:true
	 });
	 
  }//end if home

  if ($('#gallery').length>0) { 


	$('#gallery-wrapper').after('<div id="dots" class="dots clearfix">').cycle({
		        fx:     'none',
		        speed:  500,
		        timeout: 0,
		        pager:  '#dots',
				cleartypeNoBg:true
	 });

  }//end if gallery
  
   // lightbox for photos in gallery
   $("ul.list-photos a").fancybox();

   
  // lightbox for photos in gallery
  $("ul.list-video a").click(function() {
	$.fancybox({
			'padding'		: 10,
			'autoScale'		: true,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'title'			: this.title,
			'width'		   : 600,
			'height'		: 450,
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			: 'swf',
			'swf'			: {
			   	 'wmode'		: 'transparent',
				'allowfullscreen'	: 'true'
			}
		});

	return false;
   });



});

