$(document).ready(function() {
	// target external links into new windows
	$('a').each(function(index) {
		if ($(this).attr('rel') == 'external') $(this).attr('target', '_blank');
	});
	
	// if($('#slideshow')) $('#slideshow').cycle();
	
	$(window).load(function() {
		$('#loading').hide();
		$('#image').animate({width:'toggle'},500);
	});
});
