    function pulse() {
	$('#love em').each(function() {
	    var newOpacity = $(this).css('opacity') == '0.5' ? 1 : 0.5;
            $(this).animate({opacity: newOpacity}, {duration: 2500, complete: pulse});
	});
    }
    $(function() {
        pulse($('p em'));
	$('#content-text p').each(function() {
	    if ($(this).find('strong').length<1) {
	        $(this).addClass('text');
	    };
	})
	/*
	$('#content-text .text').hoverIntent(
	    function() {
		$(this).removeClass('text');
		$('.text').animate({opacity: '0.5'}, {duration: 250});
		$(this).animate({
		    backgroundColor: '#222'
		});
	    },
	    function() {
		$(this).addClass('text');
                $('.text').animate({opacity: '1', backgroundColor: '#2d2d2d'}, {duration: 250});
	    }
	);
	$('img').jrumble({
	    rumbleEvent: 'mousedown'
	});
	*/
	$('#bird').jrumble({
	    rumbleEvent: 'hover',
	    rumbleSpeed: 100
	});
	$('#content-2').css({
	    display: 'block',
	    overflow: 'hidden'
	});
	$('#next-view').css('display', 'block');
	$('#next-view').toggle(function() {
	    $('#content-2')
	        .animate({
	            width: '50%'
	        }, 1500, 'easeOutBounce', function() {
		    $(this).css('overflow', 'auto');
		    $('#content-2 a:first').focus();
		});
	    $(this)
	        .addClass('toggled')
		.animate({
		    backgroundColor: '#222'
		})
		.html('&raquo;');
	}, function() {
	    $('#content-2')
	        .animate({
	            width: '1px'
	        }, 1500, 'easeOutBounce', function() {
		    $(this).css('overflow', 'hidden');
		});
	    $(this)
		.removeClass('toggled')
		.animate({
		    backgroundColor: '#fff'
		})
		.html('&laquo;');
	});
    });
