// JavaScript Document
$(document).ready(function(){

	$(".dropjs a").append("<em></em>");
	
	$(".dropjs 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 a").click(function()
{
   window.location = $(this).attr("href");
});

});

$(document).ready(function(){

	$(".dropjs_min a").append("<em></em>");
	
	$(".dropjs_min 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_min a").click(function()
{
   window.location = $(this).attr("href");
});

});
