//////////////Cycle slideshow	
$(document).ready(function() {
    $('.slideshow').cycle({
		fx: 'fade',
		speed:  2500,
		timeout:  2000,
		random:1,
		pause:1
	});
});

//////////////Cycle slideshow-2	
$(document).ready(function() {
    $('.slideshow-2').cycle({
		fx: 'fade',
		speed:  2500,
		timeout:  2000,
		pause:1,
        pager:  '#projectimg',
		next:'#slide-image',
		slideExpr: 'img'
    });
});


///////Javascript Email Address Encoder
//  by www.stevedawson.com
function emailAddress()
{
	var first = 'ma';
	var second = 'il';
	var third = 'to:';
	var name1 = 'rob';
	var name2 = 'lafratta';
	var domain = 'gmail';
	var ext = 'com'; 
	document.write('<a href="');
	document.write(first+second+third);
	document.write(name1+name2);
	document.write('&#64;');
	document.write(domain);
	document.write('.');
	document.write(ext);  
	document.write('">'); 
	document.write('roblafratta@gmail.com</a>');}
	
