$(function(){	$(".openFormContainer").hide();	$("#openForm").click(function(){		$(this).hide(0);		$(".openFormContainer").slideDown();	});        if ($('#florcerta').length)        {            $('.pagerSeek, .pagerControl', '#florcerta').live('click', function(evt) {                $.post($(this).attr('href'), {florcerta: 1}, function(data) {                    $('#florcerta').html(data);                });                evt.preventDefault();            });        }        if ($('#curiosidades').length)        {            $('.pagerSeek, .pagerControl', '#curiosidades').live('click', function(evt) {                $.post($(this).attr('href'), {curiosidades: 1}, function(data) {                    $('#curiosidades').html(data);                });                evt.preventDefault();            });        }});$(function() { // when the document becomes ready for manipulation  $("[title]").removeAttr('title'); // removes title from all things that have title  // your other options:  // all images who's src ends in .jpg  $("img[src$=.jpg]").attr('title',null);  // all images who's src ends in .png  $("img[src$=.png]").attr('title',null);});
