﻿// JScript File

//     var mycarousel_itemImage = [
//        {url: "Images/Home/imgHome1.png", title: "Store", href:"Store.aspx"},
//        {url: "Images/Home/imgHome2.png", title: "AboutUs", href:"AboutUs.aspx"},
//        {url: "Images/Home/imgHome3.png", title: "News", href:"News.aspx"}
//    ];
//     
//     function mycarousel_itemVisibleInCallbackImages(carousel, item, i, state, evt)
//    {
//        // The index() method calculates the index from a
//        // given index who is out of the actual item range.
//        var idx = carousel.index(i, mycarousel_itemImage.length);
//        carousel.add(i, mycarousel_getImageHTML(mycarousel_itemImage[idx - 1]));
//    };

//    function mycarousel_itemVisibleOutCallbackImages(carousel, item, i, state, evt)
//    {
//        carousel.remove(i);
//    };

//    /**
//    * Item html creation helper.
//    */
//    function mycarousel_getImageHTML(item)
//    {
//        return '<a href="' + item.href + '"><img src="' + item.url + '" style="border:0" alt="' + item.title + '"></img></a>';
//    };


//    $(document).ready(function(){
//        $('#carouselImage').jcarousel({
//            wrap: 'circular',
//            scroll: 1,
//            animation: 1000,
//            itemVisibleInCallback: {onBeforeAnimation: mycarousel_itemVisibleInCallback},
//            itemVisibleOutCallback: {onAfterAnimation: mycarousel_itemVisibleOutCallback}
//        });
//    });