<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Language" content="en" />
<meta name="keywords" content="Chabad
Encino
Rabbi
Mikvah
Jewish" />
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
<meta name="exclude-custom-search" content="true" />
<meta name="scope-aids" content="5356723-5356752" />
<meta name="article-keywords" content="9928-537-2170-2898" />
<meta name="scope-aid" content="5356723" />
<meta name="scope-aid" content="5356752" />
<meta name="article-keyword" content="9928" />
<meta name="article-keyword" content="537" />
<meta name="article-keyword" content="2170" />
<meta name="article-keyword" content="2898" />
<meta property="og:url" content="https://www.chabadofencino.com/" />
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:site" content="@chabad" />
<meta property="og:title" content="Chabad of Encino" />
<link rel="canonical" href="https://www.chabadofencino.com/" />
<link rel="Stylesheet" href="/css/fonts/font-awesome/font-awesome-5.css?v=98662BF4" id="kfont-awesome" type="text/css"/>
<link rel="Stylesheet" href="/css/DefaultGrid.css?v=44B79007" id="kgrid" type="text/css"/>
<link rel="Stylesheet" href="/css/Elements.css?v=E669C926" id="k6" type="text/css"/>
<link rel="Stylesheet" href="/css/vendor/ds/tokens/sites.css?v=56EDAAC8" id="ksites-ds-css" type="text/css"/>
<link rel="Stylesheet" href="/css/new/main.css?v=2B7F734E" id="k7" type="text/css"/>
<link rel="Stylesheet" href="/css/global.css?v=D37C5613" id="k3" type="text/css"/>
<link rel="Stylesheet" href="/css/global-print.css?v=1FE80AC1" id="k5" type="text/css" media="print"/>
<link rel="Stylesheet" href="/css/cco/home/widget-styles.css?v=B14CEBA0" id="k6" type="text/css"/>
<link rel="Stylesheet" href="/css/sites6/default-theme.css?v=F68E803F" id="k" type="text/css"/>
<link rel="Stylesheet" href="/css/old/global.css?v=F7C22456" id="k2898" type="text/css"/>
<link rel="Stylesheet" href="/css/cco/home/default/prettyPhoto.min.css?v=E5A10EA0" id="kprettyPhoto" type="text/css"/>
<!--[if lte IE 8]> <link rel="Stylesheet" href="/css/global-ie.css?v=E699B0F3" id="k4" type="text/css"/> <![endif]-->
<!--[if lte IE 8]> <link rel="Stylesheet" href="/css/cco/IEfix.css?v=26E38FB6" id="kfix IE7 styling issues" type="text/css"/> <![endif]-->
<!-- Co:JsonLdResources --><script>$q=[];$j=function(f){$q.push(f);}</script><title>
Chabad of Encino
</title>








<script>
	window.dataLayer = window.dataLayer || [];
	dataLayer.push({"event":"datalayer-initialized","page":{"numberOfComments":0,"publicationDate":"2021-12-24","primaryArticleId":5356752,"title":"Custom Home Page (9142)","author":"","authorId":0,"siteName":"Chabad of Encino"},"time":{"upcomingHoliday":"The Three Weeks","daysToUpcomingHoliday":-14,"hebrewDate":"5786-05-02"}});
		dataLayer.push({ 'articleHierarchy': '-5356723-5356752-', 'keywords': '-k2898-k2170-k537-k9928-', 'k': '-5356723-5356752--k2898-k2170-k537-k9928-' });
	
</script>
<script>

(function(c,h,a,b,a,d){c[a]=c[a]||[];c[a].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=h.getElementsByTagName(b)[0],
j=h.createElement(b);j.async=true;
j.src='https://w6.chabad.org/mitzvah-tank.js';f.parentNode.insertBefore(j,f);
})(window,document,0,'script','dataLayer');</script>

	<!-- Start of StatCounter Code -->
	<script type="text/javascript">
	var sc_project = 12719534;var sc_partition = 72;var sc_invisible = 1;var sc_remove_link=1;var sc_security = "4d11608a";var sc_https = 1;
	</script>
	<script type="text/javascript" src="https://secure.statcounter.com/counter/counter_xhtml.js" defer async></script>
	<noscript><img src="//c73.statcounter.com/counter.php?sc_project=12719534&amp;java=0&amp;security=4d11608a&amp;invisible=1" border="0" /> </noscript>
	<!-- End of StatCounter Code -->


<script>
document.addEventListener("DOMContentLoaded", function() {
// Only run this if we are on the Form Submission SUCCESS page
if (window.location.href.indexOf("ArticleCcoResponse_cdo/aid/7308372") !== -1) {
let parsha = "";
let firstName = "";
let lastName = "";
let dedication = "";
// Retrieve the date and type from the URL hash (passed from the previous page)
const hashString = window.location.hash.substring(1); 
const urlParams = new URLSearchParams(hashString);
const date = urlParams.get('date');
const type = urlParams.get('type') || "full";
// Scrape the CMS Table for the User's Submitted Data
const tableRows = document.querySelectorAll('tr');
tableRows.forEach(row => {
const labelCell = row.querySelector('.field_name');
const valueCell = row.querySelector('.field_value');
if (labelCell && valueCell) {
const label = labelCell.innerText.trim();
const val = valueCell.innerText.trim();
if (label === "Parsha") parsha = val;
if (label === "Full Name - First Name") firstName = val;
if (label === "Full Name - Last Name") lastName = val;
if (label === "Dedications") dedication = val;
}
});
const fullName = (firstName + " " + lastName).trim() || "Anonymous Sponsor";
// If parsha wasn't in the table, fallback to URL hash
if (!parsha) parsha = urlParams.get('parsha');
// Send the Data to your Google Apps Script
if (parsha && date) {
const payload = {
parsha: parsha,
date: date,
type: type,
name: fullName,
notes: dedication !== "" ? dedication : "" 
};
// Your Google Apps Script Web App URL
const WEB_APP_URL = "https://script.google.com/macros/s/AKfycbw8h-88vQZaX7_d99S6HwZgYGk_p5GxoTLaC48KCHSRoB_ZTxkRahV0T40jZquF7WGT/exec";
// Send payload in the background
fetch(WEB_APP_URL, {
method: 'POST',
mode: 'no-cors',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(payload)
}).then(() => {
console.log("Sponsorship recorded to Google Sheets successfully.");
}).catch(err => {
console.error("Background sync failed:", err);
});
}
}
});
</script><script>
document.addEventListener("DOMContentLoaded", function() {
// Only run on the form page
if (window.location.href.indexOf("7308372") !== -1) {
// Extract the parsha from the URL hash
const hashString = window.location.hash.substring(1); 
const urlParams = new URLSearchParams(hashString);
const parshaName = urlParams.get('parsha');
const parshaInput = document.getElementById('input_1');
if (parshaInput) {
// Set the value
if (parshaName) {
parshaInput.value = parshaName;
}
// Make the field uneditable
parshaInput.readOnly = true;
// Visually style it so it looks disabled
parshaInput.style.backgroundColor = "#e0e3e5";
parshaInput.style.color = "#454652";
parshaInput.style.pointerEvents = "none";
parshaInput.style.opacity = "0.7";
}
}
});
</script>
</head>
<body class="lang_en dir_ltr cco_body">




<div id="PrintCreditHeader" class="show_for_print">
Printed from<b>ChabadofEncino.com</b>
</div>
<div id="header">
<div class="wrapper header-wrapper">
<div id="header_container" class="header_container">
<div class="clearfix links">
<img src="https://w2.chabad.org/images/global/spacer.gif" width="15" height="8" class="baruch_hashem" />
<div class="float_right">
<div class="topBarLink cco_topbar_link ask_the_rabbi_link">
<a href="/asktherabbi/default_cdo/jewish/Ask-the-Rabbi.htm">Ask the Rabbi</a>
</div>
<div class="topBarLink cco_topbar_link contact_link">
<a href="/tools/feedback.asp">Contact</a>
</div>
</div>
<div class="float_left">
<div class="topBarLink cco_topbar_link home_link">
<a href="/">Home</a>
</div>
<div class="topBarLink cco_topbar_link about_link">
<a href="/36226">About</a>
</div>
</div>
</div>
<div class="break_floats"></div>
</div>
<div class="clearfix branding-search">
<div id="header_branding" class="no_outline ">
<div class="g260 no_margin cco_search_header float_right">
<div class="co_search_form margin05">
<form name="MainSearchForm" id="MainSearchForm" method="get" action="/search/results.asp" class="clearfix" onsubmit="return Co.Forms.Validation.Validate(this, null, {markAsSubmitted:false});">
<div class="co_global_submit"><button type="submit" class="button" value=" "><span> </span></button></div>


<div class="co_global_input_container clearfix">
	<input id="topAreaTopSearch_search" required="true" autocomplete="nope" placeholder="Search" value="" class="co_global_input co_search js-search-field active js-mirrored-input" onblur="this.form.className = this.form.className.replace(/\sactive/gi, &#39;&#39;);" name="searchWord" onfocus="this.form.className+=&#39; active&#39;;" type="text" display_name="Search Field" min_length="3"></input>
</div>

<div id="topAreaTopSearch_search_wrapper" class="co_field_options" style="display:none;">
<div class="co_absolute_wraper" id="co_absolute_wraper" style="">
<div class="inner">
<div id="topAreaTopSearch_search_container" class="co_field_options_suggestions"></div>
<div class="break_floats"></div>
</div>
</div>
</div>
</form>
</div>
</div>
<a href="/default.asp" title="Chabad of Encino" class="site_title">Chabad of Encino<span class="site_subtitle clearfix"> </span></a>
</div>
</div>
<button type='button' class='cs-mobile-menu-open js-mobile-menu-open'><i class='fa fa-bars'></i></button>
<div class="site-nav-wrapper">
<!-- BEGIN CACHE {"CachedBy":{"Server":"W34-NYC1","Url":"https://www.chabadofencino.com/calendar/view/day.aspx?tdate=5/4","AppPath":"ChabadOnline.dll","Version":{"Built":"2026-07-07T11:53:56.7367185-04:00","Branch":"production","Configuration":"Release","Machine":""}},"Created":"2026-07-14T08:19:31.6163522-04:00","Expire":"2026-07-17T08:19:31.6163522-04:00"}-->
<script>
var primaryNavigationVersion = "639134568000000000";
</script>
<div id="co_menu_container_wrapper" class="co_menu_container_wrapper " data-list-name="primary navigation"> 
<div class="co_menu_container clearfix" id="co_menu_container">
<a class="menu_logo" href="/"></a>
<table cellpadding="0" cellspacing="0" border="0" class="main_menu_container first global">
<tr id="tabContentMain" tab="Main" style="display:table-row;">
<td class="co_menu_item home" data-menu-level="1"><a href="/default.asp"><img class="co_menu_home_image" src="https://w2.chabad.org/images/global/spacer.gif" width="28" height="60" border="0" onmouseover="this.className += ' hover';" onmouseout="this.className=this.className.replace(/\s?hover/gi, '');" /></a></td>
<td class="co_menu_item_divider"><img src="https://w2.chabad.org/images/global/spacer.gif" width="2" height="1" border="0" /></td>
<td class="co_menu_item" aid="2432838" data-menu-level="1" onmouseover="this.className += ' hover';" onmouseout="this.className = this.className.replace(/\shover/gi, '');" >
<div class="co_menu_content"><div class="co_submenu_container" style="width:auto;display:none;clip:rect(auto auto 0px auto);">
<div class="wrapper">
<div class="column_wrapper clearfix" style="height:100%;">
</div>
<div class="break_floats"></div></div></div></div><span class="parent"><div><a href="/templates/articlecco_cdo/aid/2432838/jewish/Upcoming-programs.htm" class="parent">Upcoming<br />programs</a></div></span><a href="/templates/articlecco_cdo/aid/2432838/jewish/Upcoming-programs.htm" class="bg_extension js-parent-menu-link" data-aid="2432838"></a></td>
<td class="co_menu_item_divider"><img src="https://w2.chabad.org/images/global/spacer.gif" width="2" height="1" border="0" /></td>
<td class="co_menu_item" aid="4119146" data-menu-level="1" onmouseover="this.className += ' hover';" onmouseout="this.className = this.className.replace(/\shover/gi, '');" >
<div class="co_menu_content"><div class="co_submenu_container" style="width:auto;display:none;clip:rect(auto auto 0px auto);">
<div class="wrapper">
<div class="column_wrapper clearfix" style="height:100%;">
</div>
<div class="break_floats"></div></div></div></div><span class="parent"><div><a href="/templates/articlecco_cdo/aid/4119146/jewish/Synagogue-Prayer-Services.htm" class="parent">Synagogue<br />Prayer&nbsp;Services</a></div></span><a href="/templates/articlecco_cdo/aid/4119146/jewish/Synagogue-Prayer-Services.htm" class="bg_extension js-parent-menu-link" data-aid="4119146"></a></td>
<td class="co_menu_item_divider"><img src="https://w2.chabad.org/images/global/spacer.gif" width="2" height="1" border="0" /></td>
<td class="co_menu_item arrow multi_level" aid="4119557" data-menu-level="1" onmouseover='Co.MainNavigation.Show(event, this);' onmouseout='Co.MainNavigation.Hide(event, this);' >
<div class="co_menu_content"><div class="co_submenu_container" style="width:auto;display:none;clip:rect(auto auto 0px auto);">
<div class="wrapper">
<div class="column_wrapper clearfix" style="height:100%;">
<div class="co_column">
<a href="/templates/articlecco_cdo/aid/4120153/jewish/JLI-Teens.htm" class="item empty" id="menu_item3-1" data-menu-level="2" data-aid="4120153">
<img src="https://w2.chabad.org/images/global/spacer.gif" width="5" height="10" alt="" border="0" class="arrow off" />
<span>JLI Teens</span>
</a>
</div>
<div id="menu_child3-1" class="menu_child empty selected" style="width:174px;">
<table cellpadding="0" cellspacing="0" border="0" style="height:100%;">
<tr class="wrapper clearfix">
<td class="co_column"><div class="column_left_wrapper">
<a href="" class="child_item default" data-menu-level="3" data-aid="0"><span></span></a>
</div></td>
</tr>
</table>
</div>
</div>
<div class="break_floats"></div></div></div></div><span class="parent"><img src="https://w2.chabad.org/images/global/spacer.gif" width="12" height="6" border="0" vspace="2" /><div><a href="/templates/articlecco_cdo/aid/4119557/jewish/Youth-Teen-programs-and-activities.htm" class="parent">Youth&nbsp;&&nbsp;Teen&nbsp;programs<br />and&nbsp;activities</a></div></span><a href="/templates/articlecco_cdo/aid/4119557/jewish/Youth-Teen-programs-and-activities.htm" class="bg_extension js-parent-menu-link" data-aid="4119557"></a></td>
<td class="co_menu_item_divider"><img src="https://w2.chabad.org/images/global/spacer.gif" width="2" height="1" border="0" /></td>
<td class="co_menu_item" aid="4120130" data-menu-level="1" onmouseover="this.className += ' hover';" onmouseout="this.className = this.className.replace(/\shover/gi, '');" >
<div class="co_menu_content"><div class="co_submenu_container" style="width:auto;display:none;clip:rect(auto auto 0px auto);">
<div class="wrapper">
<div class="column_wrapper clearfix" style="height:100%;">
</div>
<div class="break_floats"></div></div></div></div><span class="parent"><div><a href="/templates/articlecco_cdo/aid/4120130/jewish/JLI-Jewish-Learning-Institute.htm" class="parent">JLI&nbsp;&#8209;&nbsp;Jewish<br />Learning&nbsp;Institute</a></div></span><a href="/templates/articlecco_cdo/aid/4120130/jewish/JLI-Jewish-Learning-Institute.htm" class="bg_extension js-parent-menu-link" data-aid="4120130"></a></td>
<td class="co_menu_item_divider"><img src="https://w2.chabad.org/images/global/spacer.gif" width="2" height="1" border="0" /></td>
<td class="co_menu_item" aid="4120553" data-menu-level="1" onmouseover="this.className += ' hover';" onmouseout="this.className = this.className.replace(/\shover/gi, '');" >
<div class="co_menu_content"><div class="co_submenu_container" style="width:auto;display:none;clip:rect(auto auto 0px auto);">
<div class="wrapper">
<div class="column_wrapper clearfix" style="height:100%;">
</div>
<div class="break_floats"></div></div></div></div><span class="parent"><div><a href="/templates/articlecco_cdo/aid/4120553/jewish/YJL-Young-Jewish-Leadership.htm" class="parent">YJL&nbsp;&#8209;&nbsp;Young<br />Jewish&nbsp;Leadership</a></div></span><a href="/templates/articlecco_cdo/aid/4120553/jewish/YJL-Young-Jewish-Leadership.htm" class="bg_extension js-parent-menu-link" data-aid="4120553"></a></td>
<td class="co_menu_item_divider"><img src="https://w2.chabad.org/images/global/spacer.gif" width="2" height="1" border="0" /></td>
<td class="co_menu_item donate_link" aid="0" data-menu-level="1" onmouseover="this.className += ' hover';" onmouseout="this.className = this.className.replace(/\shover/gi, '');" >
<div class="co_menu_content"><div class="co_submenu_container" style="width:auto;display:none;clip:rect(auto auto 0px auto);">
<div class="wrapper">
<div class="column_wrapper clearfix" style="height:100%;">
</div>
<div class="break_floats"></div></div></div></div><span class="parent"><div><a href="/4970020" class="parent">Donate</a></div></span><a href="/4970020" class="bg_extension js-parent-menu-link" data-aid="0"></a></td>
</tr>
</table>
</div>
</div>
<!-- END CACHE -->
<div class="mobile-menu-bottom-links">
<a href="/36226" class="site-menu-general__link">About</a>
<a href="/search">Search</a>
<a href="/tools/feedback.asp">Contact</a>
</div>
</div>
</div>
</div>
<div id="content">
<div id="BodyContainer" class="wrapper">
<div class="body_wrapper no-hero-image clearfix">

<div class="g960"><div class="main clearfix">
<div class="g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 g960 no_margin g960 no_margin">
<div class="hp-table">
<div class="hp-row hp-row-first">
<div class="widget-4 promo_slider custom v380 feed">
<div class="wrapper">
<div class="widget_content html_format">
<div class="slider">
<div class="slides">
<div class="slide_wrapper" caption=".caption-0">
<a target="" href="/7373572">
<img src="https://w2.chabad.org/media/images/890/xVbn8906226.jpg" alt="" /></a>
</div>
<div class="slide_wrapper" caption=".caption-1">
<a target="" href="/7308375">
<img src="https://w2.chabad.org/media/images/1367/OFNj13673951.jpg" alt="" /></a>
</div>
<div class="slide_wrapper" caption=".caption-2">
<a target="" href="https://www.chabadofthevalley.com/templates/articlecco_cdo/aid/741348/jewish/Kosher-Establishments.htm">
<img src="https://w2.chabad.org/media/images/1371/QfRO13716858.jpg" alt="" /></a>
</div>
<div class="slide_wrapper" caption=".caption-3">
<a target="" href="/2432838">
<img src="https://w2.chabad.org/media/images/707/plUr7075895.jpg" alt="" /></a>
</div>
</div>
<ul class="captionList">
<li id="" class="cycle-html-caption caption-0">
<span>
<big>Shavuot @ Chabad of Encino</big>Join us for a fun and meaningful Shavuot experience! Children's ice cream party, All-night learning program, Holiday Services, Garden Party and more!</span>
<a href="/7373572" class="readMore" target="">CLICK HERE FOR SCHEDULE AND PROGRAMS</a>
</li>
<li id="" class="cycle-html-caption caption-1">
<span>
<big>Sponsor a Shabbat Kiddush </big>Honor a loved one, celebrate a milestone, or mark a Yahrtzeit by providing the community with a Shabbat meal. A Kiddush is a sacred gathering of warmth and connection.</span>
<a href="/7308375" class="readMore" target="">CLICK HERE</a>
</li>
<li id="" class="cycle-html-caption caption-2">
<span>
<big>Kosher Eateries in The Valley</big>Click below for a full list of all the Kosher Restaurants throughout the San Fernando Valley</span>
<a href="https://www.chabadofthevalley.com/templates/articlecco_cdo/aid/741348/jewish/Kosher-Establishments.htm" class="readMore" target="">Click Here</a>
</li>
<li id="" class="cycle-html-caption caption-3">
<span>
<big>Upcoming Events</big>Stay tuned for our upcoming events at Chabad</span>
<a href="/2432838" class="readMore" target="">Click here</a>
</li>
</ul>
</div>
</div></div>
</div>
</div>
<br/>
<div class="hp-row">
<div class="widget-4 message custom v380 feed">
<div class="wrapper">
<div class="widget_header">
<h5>About</h5> 
</div>
<div class="widget_content message_format"><div class="bottom_padding">The Teichman Family Community Campus<br/>The Finder Family Educational Center </div>
<a class="readMore" href="/about">Learn More</a>
</div></div>
</div>
</div>
<div></div>
<div class="hp-row">
<div class="sneak-peek-container clearfix">
<div class="header-title">Programs</div>
<div class="sneak-peek-item item-1 even g320 no_margin">
<div class="widget-1 sneak_peek custom v200 feed">
<div class="wrapper">
<div class="widget_content">
<h6 class="title_only">
<a target="" href="/4119146">Synagogue Services</a>
</h6>
<a href="/4119146" class="thumbnail" target="">
<img src="https://w2.chabad.org/images/global/spacer.gif" style="background-image:url(https://w2.chabad.org/media/images/1097/PgBS10976181.jpg);" alt="" />
<span></span>
</a>
</div>
</div>
</div>
</div>
<div class="sneak-peek-item item-2 odd g320">
<div class="widget-1 sneak_peek custom v200 feed">
<div class="wrapper">
<div class="widget_content">
<h6 class="title_only">
<a target="" href="/4120130">Adult Education</a>
</h6>
<a href="/4120130" class="thumbnail" target="">
<img src="https://w2.chabad.org/images/global/spacer.gif" style="background-image:url(https://w2.chabad.org/media/images/1097/cGxY10976222.jpg);" alt="" />
<span></span>
</a>
</div>
</div>
</div>
</div>
<div class="sneak-peek-item item-3 even g320">
<div class="widget-1 sneak_peek custom v200 feed">
<div class="wrapper">
<div class="widget_content">
<h6 class="title_only">
<a target="" href="/4119557">Youth Programs</a>
</h6>
<a href="/4119557" class="thumbnail" target="">
<img src="https://w2.chabad.org/images/global/spacer.gif" style="background-image:url(https://w2.chabad.org/media/images/1097/ggex10976226.jpg);" alt="" />
<span></span>
</a>
</div>
</div>
</div>
</div><div class="clear" ></div>
<div class="sneak-peek-item item-4 odd g320 no_margin">
<div class="widget-1 sneak_peek custom v200 feed">
<div class="wrapper">
<div class="widget_content">
<h6 class="title_only">
<a target="" href="/2432838">Holiday Celebrations</a>
</h6>
<a href="/2432838" class="thumbnail" target="">
<img src="https://w2.chabad.org/images/global/spacer.gif" style="background-image:url(https://w2.chabad.org/media/images/1097/tBBf10976224.jpg);" alt="" />
<span></span>
</a>
</div>
</div>
</div>
</div>
<div class="sneak-peek-item item-5 even g320">
<div class="widget-1 sneak_peek custom v200 feed">
<div class="wrapper">
<div class="widget_content">
<h6 class="title_only">
<a target="" href="/2432838">Community Events</a>
</h6>
<a href="/2432838" class="thumbnail" target="">
<img src="https://w2.chabad.org/images/global/spacer.gif" style="background-image:url(https://w2.chabad.org/media/images/1097/OITJ10976225.jpg);" alt="" />
<span></span>
</a>
</div>
</div>
</div>
</div>
<div class="sneak-peek-item item-6 odd g320">
<div class="widget-1 sneak_peek custom v200 feed">
<div class="wrapper">
<div class="widget_content">
<h6 class="title_only">
<a target="" href="/tools/feedback">Community Services</a>
</h6>
<a href="/tools/feedback" class="thumbnail" target="">
<img src="https://w2.chabad.org/images/global/spacer.gif" style="background-image:url(https://w2.chabad.org/media/images/1097/Wfzu10976223.jpg);" alt="" />
<span></span>
</a>
</div>
</div>
</div>
</div><div class="clear" ></div>
</div>
</div>
<div class="hp-row">
<div class="widget-4 icon custom v380 feed icon-updates">
<div class="wrapper">
<div class="widget_header">
<h5>I would like to...</h5> 
</div>
<div class="widget_content index_format">
<div class="item first clearfix">
<div class="icon">
<a href="/donate" target="">
<img src="https://w2.chabad.org/media/images/1096/YXws10965060.png" />
</a>
</div> 
<div class="title">
<a href="/donate" target="">Donate</a>
</div>
</div>
<div class="separator" ></div>
<div class="item clearfix">
<div class="icon">
<a href="/tools/feedback" target="">
<img src="https://w2.chabad.org/media/images/1096/odvg10965058.png" />
</a>
</div> 
<div class="title">
<a href="/tools/feedback" target="">Connect</a>
</div>
</div>
<div class="separator" ></div>
<div class="item clearfix">
<div class="icon">
<a href="/tools/feedback" target="">
<img src="https://w2.chabad.org/media/images/1096/bYsI10965062.png" />
</a>
</div> 
<div class="title">
<a href="/tools/feedback" target="">Get Involved</a>
</div>
</div>
<div class="separator" ></div>
<div class="item last clearfix">
<div class="icon">
<a href="/1675887" target="">
<img src="https://w2.chabad.org/media/images/1096/DVRB10965069.png" />
</a>
</div> 
<div class="title">
<a href="/1675887" target="">Learn Online</a>
</div>
</div></div></div>
</div>
</div>
<div class="hp-row">
<div class="widget-4 promo_slider custom v380 feed">
<div class="wrapper">
<div class="widget_content html_format"><div class="header-title">Learning & Inspiration</div>
<div class="slider">
<div class="slides">
<div class="slide_wrapper" caption=".caption-0">
<a target="" href="/library/article_cdo/aid/4271261/jewish/Are-Dangerous-Sports-Like-Football-and-Wrestling-Kosher.htm">
<img src="https://w2.chabad.org/media/images/1078/dyuq10788510.jpg" alt="" /></a>
</div>
<div class="slide_wrapper" caption=".caption-1">
<a target="" href="/library/article_cdo/aid/7427230/jewish/Take-the-Deborah-Quiz.htm">
<img src="https://w2.chabad.org/media/images/925/mfdQ9252504.jpg" alt="" /></a>
</div>
<div class="slide_wrapper" caption=".caption-2">
<a target="" href="/multimedia/video_cdo/aid/7430327/jewish/The-Parable-of-the-Precious-Garment.htm">
<img src="https://w2.chabad.org/media/images/1377/FSwT13777955.jpg" alt="" /></a>
</div>
</div>
<ul class="captionList">
<li id="" class="cycle-html-caption caption-0">
<span>
<big>Are Dangerous Sports Like Football and Wrestling Kosher?</big>Does the possibility of serious brain injury (CTE) mean that playing in the NFL isn’t kosher?</span>
<a href="/library/article_cdo/aid/4271261/jewish/Are-Dangerous-Sports-Like-Football-and-Wrestling-Kosher.htm" class="readMore" target="">Read More</a>
</li>
<li id="" class="cycle-html-caption caption-1">
<span>
<big>Take the Deborah Quiz</big>Test your knowledge of Deborah, the prophetess and judge.</span>
<a href="/library/article_cdo/aid/7427230/jewish/Take-the-Deborah-Quiz.htm" class="readMore" target="">Read More</a>
</li>
<li id="" class="cycle-html-caption caption-2">
<span>
<big>The Parable of the Precious Garment</big>On the Shabbat prior to Tisha B’Av, known as Shabbos Chazon, everyone is shown a vision of the futur...</span>
<a href="/multimedia/video_cdo/aid/7430327/jewish/The-Parable-of-the-Precious-Garment.htm" class="readMore" target="">Read More</a>
</li>
</ul>
</div>
</div></div>
</div>
</div>
<div class="hp-row hp_content_wrapper">
<div class="no_margin g320 no_margin">
<div class="widget-4 jewish_history custom v400 feed">
<div class="wrapper">
<div class="widget_header">
<h5>Jewish History</h5> 
</div>
<div class="widget_content"><div id="jewishHistory" class="item"><h6>Av 2, 5786</h6></div></div></div>
</div>
</div>
<div class="g320">
<div class="widget-4 candlelighting custom v400 feed">
<div class="wrapper">
<div class="widget_header">
<h5>Shabbat & Holidays</h5> 
</div>
<div class="widget_content"><div>
<div class="clearfix horizontal_padding vertical_padding">
<div class="button_container small_top_margin float_right">
<div class="button" ></div>
</div>
<div class="float_left">
<img src="https://w2.chabad.org/images/1/home/icon_candles.png" alt="" />
</div>
<div class="candlelighting_content">
<div class="large_left_margin candlelighting_heading">
<div class="medium_left_margin uppercase bold section_heading">Candle Lighting Times</div>
<div class="medium_left_margin bold section_subheading">Encino, CA 91436</div>
</div>
<div class="times_wrapper make_scrollable">
<div class="medium_top_padding clearfix">
<small class="when_to_light uppercase float_left small_right_margin">Light Candles at</small>
<div class="float_left">
<a href="/calendar/candlelighting.htm">
<span class="bold large">7:47 PM</span>&#160;&#160;-&#160;&#160;Friday, July 17
</a>
</div>
</div>
<div class="medium_top_padding clearfix">
<small class="when_to_light uppercase float_left small_right_margin">Shabbat Ends</small>
<div class="float_left">
<a href="/calendar/candlelighting.htm">
<span class="bold large">8:47 PM</span>&#160;&#160;-&#160;&#160;Shabbat, July 18
</a>
</div>
</div>
</div>
</div>
</div>
<div class="separator" ></div>
<div class="clearfix horizontal_padding vertical_padding">
<div class="small_top_margin float_right">
<div class="button" ></div>
</div>
<div class="float_left">
<img src="https://w2.chabad.org/images/1/home/icon_torah.png" alt="" />
</div>
<div class="large_left_margin parsha_content">
<div class="medium_left_margin uppercase bold section_heading">Weekly Torah Portion</div>
<div class="medium_left_margin small_top_padding">
<span class="bold large">
<a href="/parshah/default.asp?tdate=7/16/2026">Devarim</a>
</span>
</div>
</div>
</div>
<div class="separator" ></div> 
<div class="clearfix horizontal_padding top_padding">
<div class="small_top_margin float_right">
<div class="button" ></div>
</div>
<div class="float_left">
<img src="https://w2.chabad.org/images/1/home/icon_calendar.png" alt="" />
</div>
<div class="large_left_margin upcomingholiday_content">
<div class="medium_left_margin uppercase bold section_heading">Upcoming Holiday</div>
<div class="medium_left_margin small_vertical_padding">
<span class="bold large">
<a href="/article.asp?aid=144558">The Three Weeks</a>
</span>
</div>
<div class="medium_left_margin">Jul. 2 - Jul. 23</div>
</div>
</div>
</div></div></div>
</div>
</div>
<div class="rightColumn g320">
<div class="widget-4 daily_thought custom v400 feed">
<div class="wrapper">
<div class="widget_header">
<h5>Daily Thought</h5> 
</div>
<div class="widget_content article_format">
<div class="item first last clearfix">
<div class="title">
<a href="/article.asp?aid=7427392" target="">Constructive Demolition</a>
</div>
<div class="body text_expandable" container="widget-4" body="&lt;co:img index=&quot;1&quot; /&gt;&lt;p&gt;In Torah, we mirror on earth that which G‑d performs on every plane of reality.&lt;/p&gt; &lt;p&gt;If so, since the Torah prohibits dislocating even a single stone of the Holy Temple in Jerusalem, how could it be that G‑d brought the entire structure to ruins?&lt;/p&gt; &lt;p&gt;For it would certainly be absurd to imagine that the Assyrians or the Romans had the power to set fire to G-d’s house.&lt;/p&gt; &lt;p&gt;It must be that this was not an act of destruction. Rather, it was the initial phase of a much greater construction, one that would be eternally indestructible. &lt;/p&gt; &lt;p&gt;And for that to occur, the Temple had to be temporarily leveled to its foundations and G-d’s people had to be scattered to the furthest reaches of human habitation.&lt;/p&gt; &lt;p&gt;Why? Because as long as there is any place in this world that considers itself outside the realm of holiness, there remains a place for the destruction of G‑d’s Temple. &lt;/p&gt; &lt;p&gt;But in our exile, we meet face to face all that considers itself foreign to the divine. We grasp its reins, extract its poison, and channel its power.&lt;/p&gt; &lt;p&gt;This third and ultimate Temple, then, will be built of the outside turned inward, of darkness taught to shine, of the &lt;i&gt;other&lt;/i&gt; converted to the One, of the most sinister enemy transformed to a faithful ally. &lt;/p&gt; &lt;p&gt;No opposition will remain in the universe. And so it will last forever. &lt;/p&gt; &lt;p&gt;Then we will see that in truth, there was never any destruction. There was only rebuilding, growth, and eternal, deep love. &lt;/p&gt; &lt;span id=&quot;footnotetable&quot; class=&quot;h3&quot;&gt;&lt;div class=&quot;h3&quot; align=&quot;right&quot;&gt;Likutei Sichot, vol. 29, pg. 9.&lt;/div&gt;&lt;/span&gt;" TextContainerClass="inner">
In Torah, we mirror on earth that which G‑d performs on every plane of reality.
If so, since the Torah prohibits dislocating even a single stone of the Holy Temple in Jerusalem, how could it be that G‑d brought the entire structure to ruins?
For it would certainly be absurd to imagine that the Assyrians or the Romans had the power to set fire to G-d’s house.
It must be that this was not an act of destruction. Rather, it was the initial phase of a much greater construction, one that would be eternally indestructible.
And for that to occur, the Temple had to be temporarily leveled to its foundations...
</div>
</div></div></div>
</div>
</div><div class="clear" ></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
</div>
<div class="hp-row">
<div class="widget-4 latest_photos custom v420 feed widget_index_8 loading" max_items="27">
<div class="wrapper">
<div class="widget_header">
<h5>Latest Photos</h5> 
</div>
<div class="widget_content">
</div></div>
</div>
</div>
<div class="hp-row hp_subscribe">
<div class="widget-4 subscribe custom v280 feed">
<div class="wrapper">
<div class="widget_header">
<h5>Join our mailing list</h5> 
</div>
<div class="widget_content"><div id="formContainer">
<form novalidate="true" action="" method="get" onsubmit="return submitHeaderSubscribe(this, document.getElementById('formContainer'), document.getElementById('response'))" target=""><script>
var recaptchaIsEnterprise = false;
var recaptchaV2Key = "6LcG_TcUAAAAAKAVgwgW39ujc9OCjXSoQYFIA-Su";
</script>
<input type="hidden" class="js-recaptcha-input" name="cdo-captcha-response" value="" data-div-id="54228e7a-f41c-40a8-905c-d7dd5b49423a" data-processed="false" />
<div class="js-recaptcha-wrapper" id="54228e7a-f41c-40a8-905c-d7dd5b49423a" ></div> 
<fieldset>
<label for="Fname">First Name</label>
<input id="Fname" type="text" name="fname" maxlength="50" placeholder="First Name" class="co_global_input" required="visible" vmessage="Please enter first name" />
<label for="Lname">Last Name</label>
<input id="Lname" type="text" name="lname" maxlength="50" placeholder="Last Name" class="co_global_input" required="visible" vmessage="Please enter last name" />
<label for="Email">Email Address</label>
<input id="Email" type="email" name="email" placeholder="Email Address" class="co_global_input" required="true" data_type="email" vmessage="Please enter a valid email address" />
<input type="submit" id="submit" name="submit" value="Subscribe" class="buttonStyle1" />
<small>Weekly articles in your inbox</small>
<input type="hidden" name="subscriptionid" id="subscriptionid" value="80" />
</fieldset>
</form>
</div>
<small id="response" style="display:none;height:147px;" ></small></div></div>
</div>
</div>
</div></div><div class="clear" ></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
<div class="clear"></div>
</div></div>


<div class="break_floats"></div>
</div>
</div>
</div>
<div id="footer">


<div class="wrapper body_container">
<div class="g960 footer_family_text bottom_padding">
<div class="footer_container footer_text copyright_text">
<div class="bottom_padding clear_float">
<img class="footer_hr" src="https://w2.chabad.org/images/global/spacer.gif" vspace="12" width="100%" height="1" /><br />
<div class="footer_inner_container clearfix">
<div class="footer3">
<span class="footer-title" >Chabad of Encino</span>
<div class="footer-address">
<span class="footer-street">4915 Hayvenhurst Avenue </span>
<span class="footer-city-state">Encino, CA 91436</span>
</div>
<span>818-784-9986</span>
</div>
<img src="https://w2.chabad.org/images/global/spacer.gif" width="1" height="6" border="0" /><br />
Powered by <a href="https://www.chabad.org/" target="_new" class="">Chabad.org</a> &copy; 1993-2026 <a href="/4026210" target="_blank" class="privacy-link">Privacy Policy</a>
</div>
</div>
</div>
</div>
</div>
</div>

<script type="text/javascript" src="https://w2.chabad.org/scripts/js/os/jquery-latest.min.js?v=278824AF"></script>
<script type="text/javascript" src="https://w2.chabad.org/scripts/js/os/jquery.defaultValue.min.js?v=062F8985"></script>
<script type="text/javascript" src="https://w2.chabad.org/scripts/js/os/jquery.prettyPhoto.js?v=DEFC22CC"></script>
<script type="text/javascript" src="https://w2.chabad.org/scripts/js/os/jquery.cycle.all.js?v=2752F760"></script>
<script type="text/javascript" src="https://w2.chabad.org/scripts/js/co/dist/CoLib.js?v=CD6CB303"></script>
<script type="text/javascript" src="https://w2.chabad.org/scripts/js/WebComponents/bundles/magen-cdo-global.js?v=CD5CC2C5"></script>
<script type="text/javascript" src="https://w2.chabad.org/scripts/js/OverrideJSDocumentWrite.js?v=9A0227AA"></script>
<script type="text/javascript" src="https://w2.chabad.org/scripts/js/templates/sites6.js?v=E04072E1"></script>
<script type="text/javascript" src="https://w2.chabad.org/scripts/js/custom/primarynavigation.js?v=76ABCD73"></script>
<script type="text/javascript" src="https://w2.chabad.org/scripts/js/custom/BetaFeedback.js?v=2A22CA16"></script>
<script type="text/javascript" src="https://w2.chabad.org/scripts/js/custom/subscribeprompt.js?v=86D84DC2"></script>
<script type="text/javascript" src="https://w2.chabad.org/scripts/js/custom/deprecated.js?v=D506A83E"></script>
<script type="text/javascript" src="https://w2.chabad.org/scripts/js/os/enscroll-0.6.2.min.js?v=DA18A45D"></script>
<script type="text/javascript" src="https://w2.chabad.org/scripts/js/custom/runenscroll.js?v=C938FABF"></script>
<script type="text/javascript" src="https://w2.chabad.org/scripts/js/templates/LatestPhotos.js?v=C7ACBA61"></script>
<script type="text/javascript" src="https://w2.chabad.org/scripts/js/custom/textexpander.js?v=9136F2AE"></script><script>$j = $j.fn ? $j : jQuery;$j(()=>{$q.forEach(f=>{try{f.call(window);}catch(ex){console.error(ex);}});})</script>

<script  language="javascript" type="text/javascript"> Co.Settings      = {CacheClassName:'js-cache-default',MosadName:'Chabad of Encino'}; Co.ArticleId     = '5356752';Co.SectionId     = 5356752;Co.PartnerSiteId = 0;Co.SiteId        = 879;Co.IsMobilePage  = false;Co.IsResponsive  = false;Co.DbDomain      = 'ChabadofEncino.com';Co.LanguageCode  = 'en-US';Co.LoginStatus   = 'None';</script><script>
var Images = [{"height":666,"width":1000,"src":"https://w2.chabad.org/media/images/1187/DHvU11876984.jpg","href":"/article.asp?aid=5476862#photoid=11876985","created_date":"2022-03-30T12:18:50.647","updated_time":null,"caption":"Purim in the Caribbean 2022"},{"height":666,"width":1000,"src":"https://w2.chabad.org/media/images/1187/Iyjl11876982.jpg","href":"/article.asp?aid=5476862#photoid=11876983","created_date":"2022-03-30T12:18:48.587","updated_time":null,"caption":"Purim in the Caribbean 2022"},{"height":666,"width":1000,"src":"https://w2.chabad.org/media/images/1187/dWMz11876980.jpg","href":"/article.asp?aid=5476862#photoid=11876981","created_date":"2022-03-30T12:18:46.483","updated_time":null,"caption":"Purim in the Caribbean 2022"},{"height":666,"width":1000,"src":"https://w2.chabad.org/media/images/1187/JmUP11876978.jpg","href":"/article.asp?aid=5476862#photoid=11876979","created_date":"2022-03-30T12:18:43.167","updated_time":null,"caption":"Purim in the Caribbean 2022"},{"height":750,"width":1000,"src":"https://w2.chabad.org/media/images/1187/MWRU11876976.jpg","href":"/article.asp?aid=5476862#photoid=11876977","created_date":"2022-03-30T12:18:38.6","updated_time":null,"caption":"Purim in the Caribbean 2022"},{"height":750,"width":1000,"src":"https://w2.chabad.org/media/images/1187/Adyo11876974.jpg","href":"/article.asp?aid=5476862#photoid=11876975","created_date":"2022-03-30T12:18:32.94","updated_time":null,"caption":"Purim in the Caribbean 2022"},{"height":666,"width":1000,"src":"https://w2.chabad.org/media/images/1187/spMp11876972.jpg","href":"/article.asp?aid=5476862#photoid=11876973","created_date":"2022-03-30T12:18:28.31","updated_time":null,"caption":"Purim in the Caribbean 2022"},{"height":666,"width":1000,"src":"https://w2.chabad.org/media/images/1187/LnfP11876970.jpg","href":"/article.asp?aid=5476862#photoid=11876971","created_date":"2022-03-30T12:18:25.48","updated_time":null,"caption":"Purim in the Caribbean 2022"},{"height":666,"width":1000,"src":"https://w2.chabad.org/media/images/1187/olxh11876968.jpg","href":"/article.asp?aid=5476862#photoid=11876969","created_date":"2022-03-30T12:18:22.807","updated_time":null,"caption":"Purim in the Caribbean 2022"},{"height":666,"width":1000,"src":"https://w2.chabad.org/media/images/1187/RAtX11876966.jpg","href":"/article.asp?aid=5476862#photoid=11876967","created_date":"2022-03-30T12:18:19.1","updated_time":null,"caption":"Purim in the Caribbean 2022"},{"height":682,"width":1024,"src":"https://w2.chabad.org/media/images/1187/pmPJ11876964.jpg","href":"/article.asp?aid=5476862#photoid=11876965","created_date":"2022-03-30T12:18:11.203","updated_time":null,"caption":"Purim in the Caribbean 2022"},{"height":750,"width":562,"src":"https://w2.chabad.org/media/images/1187/WPoC11876962.jpg","href":"/article.asp?aid=5476862#photoid=11876963","created_date":"2022-03-30T12:18:06.343","updated_time":null,"caption":"Purim in the Caribbean 2022"},{"height":666,"width":1000,"src":"https://w2.chabad.org/media/images/1187/ooOC11876960.jpg","href":"/article.asp?aid=5476862#photoid=11876961","created_date":"2022-03-30T12:18:02.34","updated_time":null,"caption":"Purim in the Caribbean 2022"},{"height":666,"width":1000,"src":"https://w2.chabad.org/media/images/1187/FkhO11876958.jpg","href":"/article.asp?aid=5476862#photoid=11876959","created_date":"2022-03-30T12:17:59.707","updated_time":null,"caption":"Purim in the Caribbean 2022"},{"height":666,"width":1000,"src":"https://w2.chabad.org/media/images/1187/jlYR11876956.jpg","href":"/article.asp?aid=5476862#photoid=11876957","created_date":"2022-03-30T12:17:57.083","updated_time":null,"caption":"Purim in the Caribbean 2022"},{"height":666,"width":1000,"src":"https://w2.chabad.org/media/images/1187/KpMx11876954.jpg","href":"/article.asp?aid=5476862#photoid=11876955","created_date":"2022-03-30T12:17:54.817","updated_time":null,"caption":"Purim in the Caribbean 2022"},{"height":666,"width":1000,"src":"https://w2.chabad.org/media/images/1187/KLBD11876952.jpg","href":"/article.asp?aid=5476862#photoid=11876953","created_date":"2022-03-30T12:17:52.297","updated_time":null,"caption":"Purim in the Caribbean 2022"},{"height":666,"width":1000,"src":"https://w2.chabad.org/media/images/1187/XBJR11876950.jpg","href":"/article.asp?aid=5476862#photoid=11876951","created_date":"2022-03-30T12:17:50.07","updated_time":null,"caption":"Purim in the Caribbean 2022"},{"height":666,"width":1000,"src":"https://w2.chabad.org/media/images/1187/HvIw11876948.jpg","href":"/article.asp?aid=5476862#photoid=11876949","created_date":"2022-03-30T12:17:47.483","updated_time":null,"caption":"Purim in the Caribbean 2022"},{"height":666,"width":1000,"src":"https://w2.chabad.org/media/images/1187/GRQX11876946.jpg","href":"/article.asp?aid=5476862#photoid=11876947","created_date":"2022-03-30T12:17:45.227","updated_time":null,"caption":"Purim in the Caribbean 2022"},{"height":750,"width":1000,"src":"https://w2.chabad.org/media/images/1187/yFrF11876944.jpg","href":"/article.asp?aid=5476862#photoid=11876945","created_date":"2022-03-30T12:17:42.36","updated_time":null,"caption":"Purim in the Caribbean 2022"},{"height":750,"width":1000,"src":"https://w2.chabad.org/media/images/1187/UPXK11876942.jpg","href":"/article.asp?aid=5476862#photoid=11876943","created_date":"2022-03-30T12:17:40.24","updated_time":null,"caption":"Purim in the Caribbean 2022"},{"height":666,"width":1000,"src":"https://w2.chabad.org/media/images/1187/ofyf11876940.jpg","href":"/article.asp?aid=5476862#photoid=11876941","created_date":"2022-03-30T12:17:37.513","updated_time":null,"caption":"Purim in the Caribbean 2022"},{"height":341,"width":512,"src":"https://w2.chabad.org/media/images/1086/SDpF10869958.jpeg","href":"/article.asp?aid=5387223#photoid=10869959","created_date":"2019-04-04T18:55:02.323","updated_time":null,"caption":"Purim in Italy 2019 - Encino"},{"height":341,"width":512,"src":"https://w2.chabad.org/media/images/1086/OmqF10869956.jpeg","href":"/article.asp?aid=5387223#photoid=10869957","created_date":"2019-04-04T18:54:57.013","updated_time":null,"caption":"Purim in Italy 2019 - Encino"},{"height":341,"width":512,"src":"https://w2.chabad.org/media/images/1086/yBXx10869954.jpeg","href":"/article.asp?aid=5387223#photoid=10869955","created_date":"2019-04-04T18:54:52.527","updated_time":null,"caption":"Purim in Italy 2019 - Encino"},{"height":512,"width":341,"src":"https://w2.chabad.org/media/images/1086/xAmN10869952.jpeg","href":"/article.asp?aid=5387223#photoid=10869953","created_date":"2019-04-04T18:54:48.143","updated_time":null,"caption":"Purim in Italy 2019 - Encino"}];
/*
There may be multiple latest_photos, so try to initialize the object and images only once.
This may need to change if/when we'll have multiple latest_photos loading image data from different sources.
*/
if( typeof(latestPhotos) == "undefined" )
{
latestPhotos = new LatestPhotos(Images);
latestPhotos.ReadMoreLink = '5387233';
latestPhotos.ReadMoreText = 'See More Photos';
Co.DomEvents.AddListener(window, "domload", function ()
{
latestPhotos.PopulatePhotos();
});
}
//Photogallery Lightbox: http://www.no-margin-for-errors.com/projects/prettyphoto-jquery-lightbox-clone/
var pretty = jQuery("a[rel^='prettyPhoto']");
if( pretty.prettyPhoto )
{
pretty.prettyPhoto({
show_title: false,
overlay_gallery: true
});
}
</script><script>
$j = jQuery.noConflict(); //prevent conflict with prototype javascript library
$j(function ()
{
if ($j.fn.cycle) /* switch to jquery.cycle.all.js to have the graphic scroll */
{
$j('.slider').cycle({
fx: 'scrollHorz',
pause: 1000,
speed: 500,
timeout: 5000,
slideExpr: '.slide_wrapper',
caption: '.cycle-caption',
pager: '.cycle-controlNav',
rev: true,
directionNav: true,
activePagerClass: 'active'
});
}
});
</script><script>
$j = jQuery.noConflict(); //prevent conflict with prototype javascript library
$j(function ()
{
if ($j.fn.cycle) /* switch to jquery.cycle.all.js to have the graphic scroll */
{
$j('.slider').cycle({
fx: 'scrollHorz',
pause: 1000,
speed: 500,
timeout: 5000,
slideExpr: '.slide_wrapper',
caption: '.cycle-caption',
pager: '.cycle-controlNav',
rev: true,
directionNav: true,
activePagerClass: 'active'
});
}
});
</script>

</body>
</html><!-- END CACHE -->