// JavaScript Document
var mycarousel_itemList = [
	{url: "http://work.greendepot.com/featuredproductimages/vers-1-5r-alarm-clock-radio.jpg", title: "Vers Alarm Clock<br><div style=\"color:#335b7f; text-align:center\">$219.95</div>", urllink:"http://www.greendepot.com/greendepot/product.asp?dept_id=&pf_id=VERALARM&"},
    {url: "http://work.greendepot.com/featuredproductimages/aquaovo-therm-o-bottle.jpg", title: "Therm-O Bottle<br><div style=\"color:#335b7f; text-align:center\">$24.95</div>", urllink:"http://www.greendepot.com/greendepot/product.asp?dept_id=&pf_id=AQUAOVOTHERMO&"},
    {url: "http://work.greendepot.com/featuredproductimages/aquaovo.jpg", title: "Aquaovo Ovopur<br><div style=\"color:#335b7f; text-align:center\">$699.95</div>", urllink:"http://www.greendepot.com/greendepot/product.asp?pf_id=AQOVOPUR"},
    {url: "http://work.greendepot.com/featuredproductimages/bonded-logic-multipurpose-roll.jpg", title: "Bonded Logic Rolls<br><div style=\"color:#335b7f; text-align:center\">$5.95</div>", urllink:"http://www.greendepot.com/greendepot/product.asp?pf_id=blpmultiprroll"},
    {url: "http://work.greendepot.com/featuredproductimages/xtrafoam.jpg", title: "XtraFoam<br><div style=\"color:#335b7f; text-align:center\">$6.95</div>", urllink:"http://www.greendepot.com/greendepot/product.asp?dept_id=&pf_id=PFOAMNHH&"},
    {url: "http://work.greendepot.com/featuredproductimages/afm-safecoat-caulking-compound.jpg", title: "AFM Caulking<br><div style=\"color:#335b7f; text-align:center\">$9.75</div>", urllink:"http://www.greendepot.com/greendepot/product.asp?dept_id=&pf_id=AFMMULTICAULK&"},
    {url: "http://work.greendepot.com/featuredproductimages/shrink-fit-window.jpg", title: "Window Insulation<br><div style=\"color:#335b7f; text-align:center\">From $4.50</div>", urllink:"http://www.greendepot.com/greendepot/product.asp?s_id=0&prod_name=Shrink-Fit+Window+Insulating+Kits&pf_id=SHRINKFIT&dept_id=700"},
    {url: "http://work.greendepot.com/featuredproductimages/crane-drop-humidifier.jpg", title: "Crane Humidifier<br><div style=\"color:#335b7f; text-align:center\">$49.95</div>", urllink:"http://www.greendepot.com/greendepot/product.asp?prod_name=Crane+Drop+Humidifier&pf_id=CRAHUM&dept_id=45700&s_id=0&"},
    {url: "http://work.greendepot.com/featuredproductimages/biosmart-far-infrared-heaters.jpg", title: "BioSmart Heaters<br><div style=\"color:#335b7f; text-align:center\">Call Us</div>", urllink:"http://www.greendepot.com/greendepot/product.asp?s_id=0&prod_name=BioSmart+Far+Infrared+Heaters&pf_id=BIOSMART&dept_id=5150"}
	
];

function mycarousel_itemLoadCallback(carousel, state)
{
    for (var i = carousel.first; i <= carousel.last; i++) {
        if (carousel.has(i)) {
            continue;
        }

        if (i > mycarousel_itemList.length) {
            break;
        }

        carousel.add(i, mycarousel_getItemHTML(mycarousel_itemList[i-1]));
    }
};

/**
 * Item html creation helper.
 */
function mycarousel_getItemHTML(item)
{
    return '<div id="ngd-gdfeaturedlifestyleproductsimagearea"><a href="' + item.urllink + '"><img src="' + item.url + '" width="140" height="90" alt="' + item.url + '" style="border:0px" /></a></div><div id="ngd-gdfeaturedlifestyleproductstextarea"><span class="ngd-gdfeaturedproducttext"><a href="' + item.urllink + '">' + item.title + '</a></span></div>';
};

jQuery(document).ready(function() {
    jQuery('#mycarousel').jcarousel({        
		auto: 5,
        wrap: 'last',
		scroll: 1,
        size: mycarousel_itemList.length,
        itemLoadCallback: {onBeforeAnimation: mycarousel_itemLoadCallback}
    });
});
