// JavaScript Document
function tilteTag(){
	$('a:not(:has(>img))').hover(function(){
		var title = $(this).text();
		$('a:not(:has(>img))').attr('title',title);
	});
}
$(document).ready(function(e) {
	$('#welcome img').attr('alt','Welcome to Bubblytots');
	$('#highlights img').attr('alt','Highlights - Bubblytots');
	$('#footer-menu article ul').append('<li><a href="sitemap.xml">Sitemap</a></li>');
	tilteTag();
});
