﻿jQuery(document).ready(function () {

    jQuery('.slide').click(function () {
        if (jQuery(this).find("a.slideLink").size() > 0) {
            window.location = jQuery(this).find("a.slideLink").attr("href");
        }
    });

    jQuery('.slides').cycle({ cleartype: 0, speed: 1000, timeout: 5000, fx: 'fade', sync: 1, after: onAfter, activePagerClass: 'active-slide' });
});

function onAfter() {
    jQuery(this).parent().animate({ height: jQuery(this).height() });
    jQuery("span.projectName").html(jQuery(this).find("input").val());
}

    jQuery('.testimonialslide').click(function () {
        if (jQuery(this).find("a.slideLink").size() > 0) {
            window.location = jQuery(this).find("a.slideLink").attr("href");
        }
    });

    jQuery(function () {
        jQuery('.testimonialslide').show();
    });

    jQuery('.testimonialslides').cycle({ cleartype: 0, speed: 1000, timeout: 5000, fx: 'fade', sync: 1, activePagerClass: 'active-slide' });
