$(document).ready(function(){ // wait for the DOM to load, then:

	$('.innerfade').innerfade({
		speed: 500,
		timeout: 4000,
		type:'random_start',
		containerheight:'250px' 	// must match height of ul#slideshow
	}); 							// more info: : http://medienfreunde.com/lab/innerfade/
	
	$('.home #slideshow, .single #slideshow').wrap('<div id="amazing-bg" />').delay(22000).fadeOut(1000);	
	
	$("#video-1 a, #video-2 a").click(function() {
	$.fancybox({
			'padding'		: 10,
			'autoScale'		: false,
			'transitionIn'	: 'fade',
			'transitionOut'	: 'fade',
			'titleShow'		: false,
			'overlayColor'	: '#000',
			'overlayOpacity'	:	0.6,
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			: 'swf',
			'swf'			: {
			   	 'wmode'		: 'transparent',
				'allowfullscreen'	: 'true'
			}
		});

	return false;
	});
	
	$('.linklove').remove(); // donated
	
	$('.menu-item a').mousedown(function(){
		$(this).css('color','#86cff1');
	});
	
	$('.menu-item a').mouseup(function(){
		$(this).css('color','#a6e3ff');
	});

}); 
