
jQuery(document).ready(function() 
{
	// open image
  	$("#your_selector").trigger('click');


	// play youtube movie
	$("#showflash").click(function() 
	{
		$.fancybox({
				'padding'		: 0,
				'autoScale'		: false,
				'overlayOpacity' : 0.7,
				'transitionIn'	: 'fade',
				'transitionOut'	: 'fade',
				'title'			: this.title,
				'width'			: 856,
				'height'		: 498,
				'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
				'type'			: 'swf',
				'swf'			: {
				'wmode'		: 'transparent',
				'allowfullscreen'	: 'true'
		}
	});
	
		return false;
	});// JavaScript Document
	
});
