$(document).ready(function(){
	$('#add-message form:not([class=open])').hide();
	
	$('#add-message a').click(function(){
		$(this).parent().children('form').slideToggle('slow');
		return false;
	});
	
	//addHoverAction();
});

function addHoverAction(){
	$('#sujets-forums dt a').hover(
		function(){
			$(this).css("background-position","bottom left");
			$(this).parent('dl').children('dd').children().css("background-position","center center");
		}
		,
		function(){
			$(this).css("background-position","top left");
			$(this).parent('dl').children('dd').children().css("background-position","center center");
		}	
	)
	$('#sujets-forums dd a').hover(
		function(){
			$(this).css("background-position","center center");
			$(this).parent().parent().children('dt').children('a').css("background-position","bottom left");
		}
		,
		function(){
			$(this).css("background-position","center center");
			$(this).parent().parent().children('dt').children('a').css("background-position","top left");
		}	
	)
}

