﻿$(document).ready(function() {
    /* Products thumbnails scrollable */
    $(".product-thumbnails").scrollable({ size: 4, items: ".scrollable", speed: 400 });

    $(".product-thumbnails .thumbnail a").click(function() {
        var ItemNo = $(this).attr("rel");
        $(".product .current").hide();
        $(".product .current").removeClass("current");
        setTimeout(function() {
            $(".product .product" + ItemNo).addClass("current");
            $(".product .product" + ItemNo).show();
        }, 300);
        return false;
    });

    $(".product-images-small img").click(function() {
        // Set Variables
        var largePath = $(this).parent().attr("href");
        var largeAlt = $(this).attr("title");

        // Transition effects
        $(".current .product-images-large").fadeOut('slow', function() {
            // Update values of large image, desciprtion and current position
        $(".current .product-images-large img").attr({ src: largePath, alt: largeAlt, title: largeAlt });
        });

        // Finish Transition
        $(".current .product-images-large").fadeIn('slow');
        return false;
    });

});
