/*
 * common.js
 * requiert jQuery - http://jquery.com
 */

$(document).ready(function() {

	var idx = 0;
	$('div[@class=feed]').each(function(){
		if (idx < 1) {
			idx = 1;
			$(this).css({'clear':'left'});
		} else {
			idx = 0;
		}
	});
	
	$('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');
			});
	}
	
});
