
$(document).ready(function() {
   $('.slideshow1').cycle({
	fx: 'fade', timeout:'7000'
   });
   $('.slideshow2').cycle({
	fx: 'fade', timeout:'7000'
   });
});

function gotoProject1() {

    $('.slideshow1').cycle(0);
    $('.slideshow2').cycle(0);
    return false;
}

function gotoProject2() {

    $('.slideshow1').cycle(1);
    $('.slideshow2').cycle(1);
    return false;
}

function gotoProject3() {

    $('.slideshow1').cycle(2);
    $('.slideshow2').cycle(2);
    return false;
}

function gotoProject4() {

    $('.slideshow1').cycle(3);
    $('.slideshow2').cycle(3);
    return false;
}

function gotoProject5() {

    $('.slideshow1').cycle(4);
    $('.slideshow2').cycle(4);
    return false;
}

