//----------- DONT DISPLAY IMG TITLES----------------
$("img").hover(function () {
var title = $(this).attr("title");
$(this).attr("tmp_title", title);
$(this).attr("title", "");
},function () {
$(this).attr("title", $(this).attr("tmp_title"));
});