// JavaScript Document
$(document).ready(function(){

	$(".dropjs_btm a").append("<em></em>");
	
	$(".dropjs_btm a").hover(function() {
		$(this).find("em").slideDown({opacity: "show", top: "26"}, "slow");
		var hoverText = $(this).attr("title");
	    $(this).find("em").text(hoverText);
	}, function() {
		$(this).find("em").slideUp({opacity: "hide", top: "26"}, "slow");
	});




$(".dropjs_btm a").click(function()
{
   window.location = $(this).attr("href");
});

});
