jQuery('document').ready(function () {
	// Prepare the light-box for the webmail video demo flash video
	jQuery('#video-demo, .video-demo').prettyPhoto({showTitle: true, theme: "dark_rounded"});
	
	// Check if url contains ajax-video-demo hash => play video directly
	if (window.location.hash == '#ajax-video-demo') {
		jQuery('#video-demo').click();
	}
});