$("document").ready(function()
{

	/* supression du focus sur ie */
	
	$('a').focus(function() {
		this.blur();
	});
	
	/* Navigation entre les news (blog, twitter et couvertures) */

	$('div.blog, div.twitter, div.couvertures').each(function(e) {
		var liste = $(this).children('ul');
		var n = $(this).children('h3').children('a.next');
		var p = $(this).children('h3').children('a.prev');
		liste.cycle({
			fx: 'blindX',
	  	timeout: 0, 
		  speed: 300,
	  	timeout: 0,
	  	next: n,
	  	prev: p,
	  	after: onAfter
		});
	});
			
});

function onAfter() {
	$(this).parent().height( $(this).height() + 16 );
}