/*
 * common.js
 * requiert jQuery - http://jquery.com
 */

$(document).ready(function() {
	
	$('img').removeAttr('style');
	$('table').removeAttr('style');
	$('tr').removeAttr('style');
	$('td').removeAttr('style');
	
	if ($.browser.msie) {
		$('#revuesCleo li')
			.hover(function(){
				$(this).addClass('hover');
			},function() {
				$(this).removeClass('hover');
			});
	}
	
});

