<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Blue Arena &#187; Tools</title>
	<atom:link href="http://www.bluearena.com/category/tools/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bluearena.com</link>
	<description>Web Development &#38; Digital Marketing</description>
	<lastBuildDate>Wed, 16 Nov 2011 20:37:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Javascript: Shortening a breadcrumb using JQuery</title>
		<link>http://www.bluearena.com/2010/01/javascript-shortening-a-breadcrumb-using-jquery/</link>
		<comments>http://www.bluearena.com/2010/01/javascript-shortening-a-breadcrumb-using-jquery/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 12:50:19 +0000</pubDate>
		<dc:creator>Maloric</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[accessible]]></category>
		<category><![CDATA[breadcrumb]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[short]]></category>
		<category><![CDATA[shorten]]></category>
		<category><![CDATA[too long]]></category>
		<category><![CDATA[trail]]></category>

		<guid isPermaLink="false">http://www.bluearena.com/?p=188</guid>
		<description><![CDATA[A lot of sites these days use breadcrumb trails to make navigation easier for their users. This is essentially a list of every parent category/section of the page you&#39;re on, and might look something like this: Home &#62; About us &#62; Meet the team Each of these is typically a hyperlink back to the relevant [...]]]></description>
			<content:encoded><![CDATA[<p>A lot of sites these days use breadcrumb trails to make navigation easier for their users. This is essentially a list of every parent category/section of the page you&#39;re on, and might look something like this:</p>
<p><a href="#">Home</a> &gt; <a href="#">About us</a> &gt; <a href="#">Meet the team</a></p>
<p>Each of these is typically a hyperlink back to the relevant section. Now these are great, but what happens if your breadcrumb isn&#39;t that small? It&#39;s easy to see a situation where you have a bunch of really long titles that cause the breadcrumb to span over two or three lines. This isn&#39;t always what you want, since it can make the breadcrumb look broken. You might just decide to make some of the titles smaller, but with content managed sites and page names stuffed with SEO keywords, this is often easier said than done.</p>
<p><span id="more-188"></span>So I came up with a solution to this problem using <a href="http://jquery.com/">JQuery</a>. It relies on a certain kind of markup; you must use &lt;ul&gt; and &lt;li&gt; tags to build your breadcrumb rather than a continuous string of text. Hopefully you already know how to style a &lt;ul&gt; as a breadcrumb, but if not, the following should help:</p>
<ul>
<li>Use either float:left, display:inline, or display:inline-block on your &lt;li&gt; tags.</li>
<li>If you want to seperate each item with an image, use the following as well:
<ul>
<li>padding-left:24px (or whathever you need) on your &lt;li&gt; tag</li>
<li>background:url(/images/breadcrumb.gif) left no-repeat; on your &lt;li&gt;</li>
</ul>
</li>
</ul>
<p><em>(I realise the background image could be applied instead as a bullet image, but this doesn&#39;t look great in some older browsers, so the above method is a little safer)</em></p>
<p>You should be able to figure out the rest of the styling from there, but if not, drop me a comment and I&#39;ll help you out.</p>
<h2>The Javascript</h2>
<p>Ok, let me explain what the script does and then I&#39;ll post the code. Firstly, the script has two properties: &quot;breadcrumb&quot; and &quot;maxWidth&quot;. The first is a <a href="http://jquery.com/">JQuery</a> selector for the &lt;ul&gt; element. If not supplied, this defaults to &quot;$(&#39;div#breadcrumb &gt; ul&#39;); a &lt;ul&gt; that is the immediate descendant of a div with the ID of &quot;breadcrumb&quot;. The second is the maximum width in pixels the breadcrumb should be, which defaults to the <a href="http://docs.jquery.com/CSS/outerWidth">outerWidth</a> of the &lt;ul&gt;. If it goes over this width, the breadcrumb is shortened until it fits.</p>
<p>Essentially, what the script does is check the combined width of the breadcrumb&#39;s &lt;li&gt; elements. If this total exceeeds the &quot;maxWidth&quot; property, the script will shorten the first non-shortened list item and check again. It continues doing this until the combined width of all of the list items is less than &quot;maxWidth&quot;. When each item in shortened, the text is replaced by &quot;&#8230;&quot; and to keep things nice and accessible, a title tag is added with the original text.</p>
<p>And that&#39;s that. All that&#39;s left is to show you the script and how to call it:</p>
<pre>function shortenBreadcrumb(options){
    /*
        Shortens the breadcrumb to a specified width by removing the text from one list item
        at a time and replacing it with &quot;...&quot; - accepts an options object as an optional
        parameter with two options:
            shortenBreadcrumb({
                breadcrumb : $(&#39;div#breadcrumb &gt; ul&#39;),
                maxWidth : 725
            });

        The first is the selector for the breadcrumb ul, the second is the maximum width you
        want it to be.
    */

    var breadcrumb = $(&#39;div#breadcrumb &gt; ul&#39;);
    var maxWidth = $(&#39;div#breadcrumb&#39;).innerWidth();

    if (options != undefined){
        if (options.breadcrumb != null) { breadcrumb = options.breadcrumb; }
        if (options.maxWidth != null) { maxWidth = options.maxWidth; }
    }

    var levelCount = breadcrumb.find(&#39;li&#39;).size();
    var shortEnough = false;
    var totalWidth;
    while (shortEnough == false) {
        totalWidth = 0;
        breadcrumb.children(&#39;li&#39;).each (function(){
            totalWidth += $(this).outerWidth(true);
        });
        if (totalWidth &gt; maxWidth){
            var li = breadcrumb.children(&#39;li&#39;).not(&#39;.short&#39;).eq(1);
            li.addClass(&#39;short&#39;);
            li.children(&#39;a&#39;).attr(&#39;title&#39;, li.children(&#39;a&#39;).html());
            li.children(&#39;a&#39;).html(&#39;...&#39;);
        }
        else {
            shortEnough = true;
        }
    }
}
</pre>
<p>Include this script in your page and call using:</p>
<pre>$(document).ready(function(){
    shortenBreadcrumb({
        breadcrumb : $(&#39;ul#breadcrumb&#39;),
        maxWidth : 600
    });
});
</pre>
<p>Of course, any of these two options can be left blank, so you can call it like so:</p>
<pre>    shortenBreadcrumb();
</pre>
<p>It goes without saying that this script requires the <a href="http://jquery.com/">JQuery</a> library. If you want to use the script in your site, please do, but a mention of Blue Arena or a comment would be appreciated.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bluearena.com/2010/01/javascript-shortening-a-breadcrumb-using-jquery/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Gallery Carousel v1.1</title>
		<link>http://www.bluearena.com/2009/06/gallery-carousel-v1-1/</link>
		<comments>http://www.bluearena.com/2009/06/gallery-carousel-v1-1/#comments</comments>
		<pubDate>Sat, 06 Jun 2009 14:18:12 +0000</pubDate>
		<dc:creator>Maloric</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[carousel]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[slide]]></category>
		<category><![CDATA[slider]]></category>

		<guid isPermaLink="false">http://wordpress.bluearena.com/?p=126</guid>
		<description><![CDATA[Gallery Carousel is a JQuery Plugin which creates a sliding gallery of image thumbnails that can be clicked to view a full size image.  The full size image can also have a caption and/or hyperlink.  The plugin is configurable and easy to set up, requiring little markup. Prev Next Download packed code for Gallery Carousel [...]]]></description>
			<content:encoded><![CDATA[<p>Gallery Carousel is a JQuery Plugin which creates a sliding gallery of image thumbnails that can be clicked to view a full size image.  The full size image can also have a caption and/or hyperlink.  The plugin is configurable and easy to set up, requiring little markup.</p>
<p><span id="more-126"></span></p>
<div id="targetWrap"><img id="featuredImg" alt="" /></div>
<table border="0">
<tbody>
<tr>
<td><a id="prev" href="#">Prev</a></td>
<td>
<div id="featured"></div>
</td>
<td><a id="next" href="#">Next</a></td>
</tr>
</tbody>
</table>
<hr /><a href="/wp-content/themes/bluearena/includes/scripts/jQuery.galleryCarousel-1.1.pack.js">Download packed code for Gallery Carousel v1.1</a></p>
<p>(requires JQuery v1.3.2)</p>
<h2>New in v1.1</h2>
<ul>
<li>You can now add captions for each image</li>
<li>You can now add a link for each image to navigate to</li>
</ul>
<h2>Instructions</h2>
<p>To create a new gallery, you need to first include the script in your page, <em>after</em> you have included the JQuery script.</p>
<pre>&lt;script src="includes/galleryCarousel-1.1.min.js" type="text/javascript"&gt;&lt;/script&gt;</pre>
<p>Then some simple styles to make it look nice:</p>
<pre>&lt;style type="text/css"&gt;
	img {border:0;}
	ul.gallery li {padding:0 5px;}
	ul.gallery li img {height:61px;} /* If you don't specify a thumnail image you should set the height of the scaled down image instead */
	ul.gallery li img.selected {border:2px solid #000;}
&lt;/style&gt;</pre>
<p>You&#8217;ll need some basic markup: an empty image, a next link, a previous link and a div to put our carousel into.  If you want to put captions somewhere for each image, you will also need a div or span for this:</p>
<pre>&lt;img id="featuredImg" /&gt;
&lt;span id="caption"&gt;&lt;/span&gt;
&lt;table&gt;
	&lt;tr&gt;
		&lt;td&gt;
			&lt;a id="prev" href="#"&gt;Prev&lt;/a&gt;
		&lt;/td&gt;
		&lt;td&gt;
			&lt;div id="galleryWrap"&gt;&lt;/div&gt;
		&lt;/td&gt;
		&lt;td&gt;
			&lt;a href="#" id="next"&gt;Next&lt;/a&gt;
		&lt;/td&gt;
	&lt;/tr&gt;
&lt;/table&gt;</pre>
<p>If you prefer to specify your images in the html rather than the javascript, you can also populate your target div with a ul like the following:</p>
<pre>&lt;ul class="myGalleryClass"&gt;
	&lt;li&gt;&lt;a href="path/to/full/image1.jpg"&gt;&lt;img src="/path/to/thumb1.jpg" alt="Image 1" /&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="path/to/full/image2.jpg"&gt;&lt;img src="/path/to/thumb2.jpg" alt="Image 2" /&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="path/to/full/image3.jpg"&gt;&lt;img src="/path/to/thumb3.jpg" alt="Image 3" /&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="path/to/full/image4.jpg"&gt;&lt;img src="/path/to/thumb4.jpg" alt="Image 4" /&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="path/to/full/image5.jpg"&gt;&lt;img src="/path/to/thumb5.jpg" alt="Image 5" /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</pre>
<p>If you don&#8217;t create your image list manually, you can populate it as an array.  Below I have only specified the url of the full size image.  The alt tag (&#8220;alt&#8221;) and thumbnail (&#8220;thumb&#8221;) can also be specified, but if the thumb isn&#8217;t specified the full size url will be used instead (meaning the thumb should be resized via css instead).</p>
<pre>&lt;script type="text/javascript"&gt;
	$(document).ready(function(){
		var images = new Array();
		images[0] = {src : "/images/slide1.jpg"}
		images[1] = {src : "/images/slide2.jpg"}
		images[2] = {src : "/images/slide3.jpg"}
		images[3] = {src : "/images/slide4.jpg"}
		images[4] = {src : "/images/slide5.jpg"}
		images[5] = {src : "/images/slide6.jpg"}

		// Create a new galleryCarousel with a few config options
		$('#galleryWrap').galleryCarousel({
			target : $('#featuredImg'),
			nextBtn : $('a#next'),
			prevBtn : $('a#prev'),
			images : images
		});
	});
&lt;/script&gt;</pre>
<h3>Captions</h3>
<p>When you have specified a caption for an image, it will be shown &#8211; you can specify text or html for your caption.  When there is no caption specified for an image, the caption container will be hidden.</p>
<pre>images[0] = {
    src : '/path/to/my/image.jpg',
    caption : 'This is my image caption.'
}</pre>
<h3>Main Image Hyperlink</h3>
<p>You can specify a page to navigate to when clicking on an image, which is useful for portfolios and such.  To specify an image, simply add a url property like so:</p>
<pre>images[0] = {
    src : '/path/to/my/image.jpg',
    url : '/path/to/my/page.html'
}</pre>
<h2>Property List</h2>
<p>Here is a list of the configuration options and their defaults:</p>
<table style="width: 100%;" border="1">
<thead>
<tr>
<th>Property Name</th>
<th>Default Value</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>itemsShown</td>
<td>3</td>
<td>The number of images visible atany one time</td>
</tr>
<tr>
<td>step</td>
<td>1</td>
<td>The number of images to scroll past when next/prev links are clicked</td>
</tr>
<tr>
<td>target</td>
<td>$(&#8216;#galleryImg&#8217;)</td>
<td>The selector for the full size image</td>
</tr>
<tr>
<td>selectedClass</td>
<td>selected</td>
<td>The class for an image thumnail that is currently being displayed</td>
</tr>
<tr>
<td>nextBtn</td>
<td>$(&#8216;a#galleryNext&#8217;)</td>
<td>The selector for the next link</td>
</tr>
<tr>
<td>prevBtn</td>
<td>$(&#8216;a#galleryPrev&#8217;)</td>
<td>The selector for the previous link</td>
</tr>
<tr>
<td>highAlpha</td>
<td>1</td>
<td>The opacity of a selected / hovered thumnail</td>
</tr>
<tr>
<td>lowAlpha</td>
<td>0.5</td>
<td>The opacity of a non-selected thumbnail</td>
</tr>
<tr>
<td>scrollTime</td>
<td>500</td>
<td>The time in ms it takes to scroll left or right</td>
</tr>
<tr>
<td>interval</td>
<td>1000</td>
<td>The time in ms between automatic scrolling (set to 0 to disable auto-scrolling)</td>
</tr>
<tr>
<td>carouselClass</td>
<td>gallery</td>
<td>The class for the &lt;ul&gt; element (in case you want to style it easily)</td>
</tr>
<tr>
<td>captionTarget</td>
<td>$(&#8216;#caption&#8217;)</td>
<td>The selector for your caption container</td>
</tr>
<tr>
<td>images</td>
<td>n/a</td>
<td>A collection of images (see below)</td>
</tr>
</tbody>
</table>
<p>The following is a list of the properties for the images object:</p>
<table style="width: 100%;" border="1">
<tbody>
<tr>
<td>Property Name</td>
<td>Default</td>
<td>Description</td>
</tr>
<tr>
<td>src</td>
<td>n/a</td>
<td>URL of the full size image</td>
</tr>
<tr>
<td>thumb</td>
<td>n/a</td>
<td>URL of the thumbnail (optional)</td>
</tr>
<tr>
<td>alt</td>
<td>n/a</td>
<td>Alt tag for the thumb / full image (optional)</td>
</tr>
<tr>
<td>url</td>
<td>n/a</td>
<td>The url you want to navigate to on clicking the full image</td>
</tr>
<tr>
<td>caption</td>
<td>n/a</td>
<td>The caption you want associated with this image</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.bluearena.com/2009/06/gallery-carousel-v1-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gallery Carousel v1.0</title>
		<link>http://www.bluearena.com/2009/05/gallery-carousel-v1-0/</link>
		<comments>http://www.bluearena.com/2009/05/gallery-carousel-v1-0/#comments</comments>
		<pubDate>Sun, 24 May 2009 14:05:59 +0000</pubDate>
		<dc:creator>Maloric</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[carousel]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[slide]]></category>
		<category><![CDATA[slider]]></category>

		<guid isPermaLink="false">http://wordpress.bluearena.com/?p=54</guid>
		<description><![CDATA[Gallery Carousel does what it says on the tin. It&#8217;s part image gallery, part carousel. It provides an unordered list of images which can be scrolled horizontally. When an image is clicked or the list is scrolled, the main image is updated to the larger version of the thumb. In order to use Gallery Carousel [...]]]></description>
			<content:encoded><![CDATA[<p>Gallery Carousel does what it says on the tin.  It&#8217;s part image gallery, part carousel.  It provides an unordered list of images which can be scrolled horizontally.  When an image is clicked or the list is scrolled, the main image is updated to the larger version of the thumb. In order to use Gallery Carousel you must include jQuery 1.3.2 before you create a new carousel.  Creating a carousel requires relatively little markup, just a list of images, a couple of links to navigate and an image to represent the full size image.</p>
<p><span id="more-54"></span></p>
<p><script type="text/javascript">
	demoGallery();
</script></p>
<p><img alt="" id="featuredImg" /></p>
<table>
<tbody>
<tr>
<td><a id="prev" href="#">Prev</a></td>
<td>
<div id="featured">&nbsp;</div>
</td>
<td><a href="#" id="next">Next</a></td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<hr />
<p><a href="/wp-content/themes/bluearena/includes/scripts/jQuery.galleryCarousel-1.0.pack.js">Download packed code for Gallery Carousel v1.0</a></p>
<p>Here is a stripped down version.&nbsp; First, include the galleryCarousel javascript file in the &lt;head&gt; section of your page:</p>
<pre>
&lt;script src=&quot;includes/galleryCarousel-1.0.min.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;</pre>
<p>Then some simple styles to make it look nice:</p>
<pre>
&lt;style type=&quot;text/css&quot;&gt;
	img {border:0;}
	ul.gallery li {padding:0 5px;}
	ul.gallery li img {height:61px;} /* If you don't specify a thumnail image you should set the height of the scaled down image instead */
	ul.gallery li img.selected {border:2px solid #000;}
&lt;/style&gt;</pre>
<p>You&#8217;ll need some basic markup: an empty image, a next link, a previous link and a div to put our carousel into:</p>
<pre>
&lt;img id=&quot;featuredImg&quot; /&gt;
&lt;table&gt;
	&lt;tr&gt;
		&lt;td&gt;
			&lt;a id=&quot;prev&quot; href=&quot;#&quot;&gt;Prev&lt;/a&gt;
		&lt;/td&gt;
		&lt;td&gt;
			&lt;div id=&quot;galleryWrap&quot;&gt;&lt;/div&gt;
		&lt;/td&gt;
		&lt;td&gt;
			&lt;a href=&quot;#&quot; id=&quot;next&quot;&gt;Next&lt;/a&gt;
		&lt;/td&gt;
	&lt;/tr&gt;
&lt;/table&gt;</pre>
<p>If you prefer to specify your images in the html rather than the javascript, you can also populate your target div with a ul like the following:</p>
<pre>
&lt;ul class=&quot;myGalleryClass&quot;&gt;
	&lt;li&gt;&lt;a href=&quot;path/to/full/image1.jpg&quot;&gt;&lt;img src=&quot;/path/to/thumb1.jpg&quot; alt=&quot;Image 1&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;path/to/full/image2.jpg&quot;&gt;&lt;img src=&quot;/path/to/thumb2.jpg&quot; alt=&quot;Image 2&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;path/to/full/image3.jpg&quot;&gt;&lt;img src=&quot;/path/to/thumb3.jpg&quot; alt=&quot;Image 3&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;path/to/full/image4.jpg&quot;&gt;&lt;img src=&quot;/path/to/thumb4.jpg&quot; alt=&quot;Image 4&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;path/to/full/image5.jpg&quot;&gt;&lt;img src=&quot;/path/to/thumb5.jpg&quot; alt=&quot;Image 5&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</pre>
<p>If you don&#8217;t create your image list manually, you can populate it as an array.&nbsp; Below I have only specified the url of the full size image.&nbsp; The alt tag (&quot;alt&quot;) and thumbnail (&quot;thumb&quot;) can also be specified, but if the thumb isn&#8217;t specified the full size url will be used instead (meaning the thumb should be resized via css instead).</p>
<pre>
&lt;script type=&quot;text/javascript&quot;&gt;
	$(document).ready(function(){
		var images = new Array();
		images[0] = {src : &quot;/images/slide1.jpg&quot;}
		images[1] = {src : &quot;/images/slide2.jpg&quot;}
		images[2] = {src : &quot;/images/slide3.jpg&quot;}
		images[3] = {src : &quot;/images/slide4.jpg&quot;}
		images[4] = {src : &quot;/images/slide5.jpg&quot;}
		images[5] = {src : &quot;/images/slide6.jpg&quot;}

		// Create a new galleryCarousel with a few config options
		$('#galleryWrap').galleryCarousel({
			target : $('#featuredImg'),
			nextBtn : $('a#next'),
			prevBtn : $('a#prev'),
			images : images
		});
	});
&lt;/script&gt;</pre>
<p>Here is a list of the configuration options and their defaults:</p>
<table border="1" width="100%">
<tbody>
<tr>
<td>Property Name</td>
<td>Default Value</td>
<td>Description</td>
</tr>
<tr>
<td>itemsShown</td>
<td>3</td>
<td>The number of images visible atany one time</td>
</tr>
<tr>
<td>step</td>
<td>1</td>
<td>The number of images to scroll past when next/prev links are clicked</td>
</tr>
<tr>
<td>target</td>
<td>$(&#8216;#galleryImg&#8217;)</td>
<td>The selector for the full size image</td>
</tr>
<tr>
<td>selectedClass</td>
<td>selected</td>
<td>The class for an image thumnail that is currently being displayed</td>
</tr>
<tr>
<td>nextBtn</td>
<td>$(&#8216;a#galleryNext&#8217;)</td>
<td>The selector for the next link</td>
</tr>
<tr>
<td>prevBtn</td>
<td>$(&#8216;a#galleryPrev&#8217;)</td>
<td>The selector for the previous link</td>
</tr>
<tr>
<td>highAlpha</td>
<td>1</td>
<td>The opacity of a selected / hovered thumnail</td>
</tr>
<tr>
<td>lowAlpha</td>
<td>0.5</td>
<td>The opacity of a non-selected thumbnail</td>
</tr>
<tr>
<td>scrollTime</td>
<td>500</td>
<td>The time in ms it takes to scroll left or right</td>
</tr>
<tr>
<td>interval</td>
<td>1000</td>
<td>The time in ms between automatic scrolling (set to 0 to disable auto-scrolling)</td>
</tr>
<tr>
<td>carouselClass</td>
<td>gallery</td>
<td>The class for the &lt;ul&gt; element (in case you want to style it easily)</td>
</tr>
<tr>
<td>images</td>
<td>n/a</td>
<td>A collection of images (see below)</td>
</tr>
</tbody>
</table>
<p>The following is a list of the properties for the images object:</p>
<table border="1" width="100%">
<tbody>
<tr>
<td>Property Name</td>
<td>Default</td>
<td>Description</td>
</tr>
<tr>
<td>src</td>
<td>n/a</td>
<td>URL of the full size image</td>
</tr>
<tr>
<td>thumb</td>
<td>n/a</td>
<td>URL of the thumbnail (optional)</td>
</tr>
<tr>
<td>alt</td>
<td>n/a</td>
<td>Alt tag for the thumb / full image (optional)</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bluearena.com/2009/05/gallery-carousel-v1-0/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

