/** JavaScript Document */
/** www.webdevcreations.net
Written in Notepad ++
Part of jQuery and jCarousel
*/
var mycarousel_itemList = [
    {url: "blank.php", title: "DEAD--IS ON portfolio.php PAGE FOR VALIDATION REASONS", layer: "layer1", link: "maybethis.php"},

  
	{url: "images/projects/laurel_thumb.jpg", title: "Laurel Canyon Ranch", layer: "layer3",  link: "image_gallery.php?gallery=laurelcanyon"},
	{url: "images/projects/rolling_hills_thumb.jpg", title: "Rolling Hills", layer: "layer4",  link: "image_gallery.php?gallery=rolinghills"},

    	{url: "images/projects/laurel_thumb.jpg", title: "Laurel Canyon Ranch", layer: "layer3",  link: "image_gallery.php?gallery=laurelcanyon"},
	{url: "images/projects/rolling_hills_thumb.jpg", title: "Rolling Hills", layer: "layer4",  link: "image_gallery.php?gallery=rolinghills"},
];

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 '<a href="' + item.link + '" target="_self"><img src="' + item.url + '" onmouseover="showHideLayers(\'' + item.layer + '\',\'\',show)" onmouseout="showHideLayers(\'' + item.layer + '\',\'\',hide)" width="150" height="150" alt="' + item.title + '" /></a>';
};
