$(document).ready(function(){
	$.expr[':'].external = function(obj){
    return !obj.href.match(/^mailto\:/)
            && (obj.hostname != location.hostname);
	};

	$('a:external').attr('target', '_blank');
	
	$('#slideshow').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		timeout:         5000
	});
	
	$(".gallery-item > a").fancybox();

});
