$(document).ready(function()
{
	$('a[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });
	
	$('.slideshow').cycle({
		fx: 'fade', speed: 5000 // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	
});





  
