/**
 * tooltips
 */
 
 /**
  * change background-color on mouse-over for li elements of class fileList
  * required:
  * + jquery.js
  * + jquery.qtip.js
  */
  
$(document).ready(function(){
	$("ul.fileList li")
	.mouseover(function(){
		$(this).css("background-color","#E7F2F8")
			   .css("cursor","pointer");
	})
	.mouseout(function(){
		$(this).css("background-color","")
			   .css("cursor","default");
	})
});

