 $(document).ready(function(){
   initCaseRows();
 });

function initCaseRows() {
	$("#cases-content li:has(div.case)").hover(
		function() {
			$(this).addClass("over");
			$("#case-presentation").empty();
			$(this).find(".case").clone().appendTo("#case-presentation");
		},
		function() {
			$(this).removeClass("over");
		}
	);
}
