// Function slideshow
// 
$(document).ready(function() {
    $('.slideshow').cycle({
                fx: 'shuffle', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		timeout: 6000
        });
});

// Function to encrypt my email
// 
function dc(s){
	c='';
	for (i=0;
	i<s.length;i++){
		c+=String.fromCharCode(s.charCodeAt(i)-1);
	}
	document.write(c)
}


