$(function() {
	$("#item1,#item2,#item3,#item4").hover(
		function() {
			var msg = "&nbsp;";
			switch ($(this).attr("id")) {
				case "item1":
					msg = "It is blog for art,books,movies... and my favorite things."
					break;
				case "item2":
					msg = "derori is a archives of the clipping images  from the Internet."
					break;
				case "item3":
					msg = "This is a short novel with a strange story."
					break;
				case "item4":
					msg = "Hanadi is an index of my favorite artist.";
					break;
			}
			$("#msg").html(msg);
		},
		function() {
			$("#msg").html("&nbsp;");
		}
	);
});
