$(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:         3000
	});
	
	$("").tabs("div.panes > div");
	$("ul.tabs").tabs("div.panes > div", {
	/* tabs configuration goes here */
	effect: 'fade',
	fadeInSpeed: 500,
	fadeOutSpeed: 0
});
});
