$(document).ready(function() {
	$("#banner").slides();
	
	$("#footer a").append("<em></em>");
	$("#footer a").hover(function(){
		$(this).find("em").animate({opacity: "show", top: "-50px"}, 250);
		var hoverText = $(this).attr("title");
	    $(this).find("em").text(hoverText);
	}, function(){
		$(this).find("em").animate({opacity: "hide", top: "-55px"}, 250);
	});
	
	$("#banner div.slide").click(function(){
		window.location=$(this).find("a").attr("href");
		return false;
	});
	
	$("a.bmarks-btn").shareitBtn();
	$(".bmarks a").shareitHover();
});
