$(function() {
	$('#content #jobs .news h3').css('cursor', 'pointer').attr('title', 'plus de détail...').hover(function() { $(this).addClass('hover') }, function() { $(this).removeClass('hover') }).click(function () {
		newsTitle = $(this);																																																					 
		newsTitle.next('.description').toggle('normal', function() {
			$('.openClose img', newsTitle).attr('src', ($(this).css('display') == 'none' ? 'picture/interface/mif/nextH.jpg' : 'picture/interface/mif/nextV.jpg'));
		});
	});
});
