$(window).ready(function(){
	jQuery(function () {
		$('#carousel ul li:first').fadeIn(1000, function() {
			$('#carousel ul').cycle({ 
				fx:    'fade', 
				speed:  1500,
				timeout: 6000,
				cleartype: 1,
				pause: 1
			 });
		});
		
		$('#projects ul li:first').fadeIn(1000, function() {
			$('#projects ul').cycle({ 
				fx:    'fade', 
				speed:  1500,
				timeout: 2000
			});
		});
	});
	$('a[rel="external"]').click(function(){
		$(this).attr('target','_blank');
	});
});

