﻿/// <reference path="../../../Scripts/jquery-1.4.1-vsdoc.js" />
/// <reference path="../../../Scripts/jquery-1.4.1.min.js" />
/// <reference path="../jQuery/jquery.innerfade.js" />
/// <reference path="../jQuery/jquery.stylish-select.min.js" />
/// <reference path="../jQuery/jQuery.cycle/jquery.cycle.all.min.js" />


$().ready(function() {
    //    $('#StartPageImageSlide').innerfade({
    //        speed: 1000,
    //        timeout: 5000,
    //        type: 'sequence',
    //        containerheight: '297px'
    //    });
    $('#StartPageImageSlide').cycle({
        fx: 'fade',
        speed: 1500,
        timeout: 5000,
        height: '297px',
        before: function(currSlideElement, nextSlideElement, options, forwardFlag) {
            var index = $(nextSlideElement).attr("id").toString().replace('SlideItem_Index_', '');

            $(".lnkSlide").each(function() {
                $(this).attr("src", $(this).attr("src").replace("ImageBox/mo_prog", "ImageBox/prog_bg"));
            });
            $("#lnkSlide_Index_" + index).attr("src", $("#lnkSlide_Index_" + index).attr("src").replace("ImageBox/prog_bg", "ImageBox/mo_prog"));
        }
    });
    $('.lnkSlide').click(function() {
        $('#StartPageImageSlide').cycle(parseInt($(this).attr("id").toString().replace('lnkSlide_Index_', '')));
        return false;
    });    
});


