$(document).ready(function() {
	if ($.browser.msie  && $.browser.version == '6.0') {
		//desactive les animations dans ie6
		//actus
		$('.item-actu').hover(function (){
	        $(this).addClass('hover');
		}, function (){
	        $(this).removeClass('hover');
		})
	}
});
