$(document).ready(function() {
    $('#slideshow').cycle({
		fx: 'fade',
                speed: 1500
	});


    $('.blank').attr('target','_blank');
    $('.post a').attr('target','_blank');

    $(function() {
        var zIndexNumber = 1000;
        $('div').each(function() {
            $(this).css('zIndex', zIndexNumber);
            zIndexNumber -= 10;
        });
    });
});


