// JavaScript Document

 $(document).ready(function(){

			$(".panelik div.info").hide();
			$(".panelik").hover(
			 function () {
				 $(this).children("div.info").fadeIn('normal');
			 },
			 function () {
				 $(this).children("div.info").fadeOut('normal');
			 }
			); 
										

  });
 
 
