$('.foto')
	.cycle({
    fx:'scrollDown',
	speed:1500,
	timeout:1
});
$(document).ready(function() {
    $('.slideshow').cycle({
		fx: 'scrollHorz',
		timeout: 4000,
		next: '.slideNext', 
    	prev: '.slidePrev'
	});
});
$(document).ready(function() {
    $('.rollover').hover(function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('id'));
        $(this).attr('id', currentImg);
    }, function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('id'));
        $(this).attr('id', currentImg);
    });
});

