
$(document).ready (function() {

			
		
		$('a[rel="external"]').click(function(){
			$(this).attr('target','_blank');
		});

		
		$(".images").cycle();
		

		
		$('.portfolio').each(function() {
			id = $(this).attr('id');
			
			$('#' + id).cycle({
				fx:     'scrollLeft', 
				speed:  300, 
				next:   '#' + id, 
				timeout: 0 
			
			});
		});

			
});




