		$( function() {

			var timer;

			$("a[@rel='external']").addClass("external").click(function() { window.open($(this).attr('href')); return false; });

			$('#features').cycle({
				fx: "fade",
				speed: 1000,
				timeout: 6000,
				pause: 1
			});
			
			$('#features li').each( function() {
				$(this).click( function() {
					window.location = $('#link_'+ $(this).attr('id')).attr('href');
				});
			});

		
		});
