Skip to content

Instantly share code, notes, and snippets.

<div id="slideshow">
<img id="home_main" style="margin-bottom: 0px;" src="{{skin url='images/media/slideshow/slide0.jpg'}}" />
</div>
<div id="slideinfo">
<div id="slide0">
<p>Some text regarding the first slide.</p>
</div>
<div id="slide1" style="display:none;">
<p>Some text regarding the second slide.</p>
</div>
<div id="slideshow">
<img id="home_main" style="margin-bottom: 0px;" src="{{skin url='images/media/slideshow/slide1.jpg'}}" />
</div>
<h1><a href="{{store url="design-build"}}">We can help you design and build your next coffee bar!</a></h1>
<script type="text/javascript">
var images = new Array();
images[0] = '{{skin url='images/media/slideshow/slide1.jpg'}}';
images[1] = '{{skin url='images/media/slideshow/slide2.jpg'}}';
images[2] = '{{skin url='images/media/slideshow/slide3.jpg'}}';
<script type="text/javascript">
Ext.onReady(function(){
var store = new Ext.data.SimpleStore({
fields: ['name', 'id'],
data : [<c:forEach var="row" items="${mapData}">['${row.name}', '${row.id}'],</c:forEach>]
});
siteSelection = new Ext.form.ComboBox({
id : "selectedMap",
name : "selectedMap",
listeners : { 'select' : { fn : load }},