jQuery(document).ready(function(){

	jQuery("#youtubeLink",this).click(function() {
		$.fancybox({
			'overlayOpacity': 0.8,
			'overlayColor' 	: '#000',
			'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'
		});
		return false;
	});

	jQuery("input#searchsubmit").attr({ 
		value: ""
	});        
    
});
