$(document).ready(function() {	
	$("#topic").mouseenter(
        function() {
            $("ul#dropdown").slideToggle("slow");
        }
    );
    
    $("ul#dropdown").mouseleave(
        function() {
            $(this).slideToggle("slow");
        }
    );
})

function remove_cufon(selector) {
	$(selector).html( cufon_text(selector) );
	return true;
}

function cufon_text(selector) {
	var g = '';
	$(selector +' cufon cufontext').each(function() {
    	g = g + $(this).html();
	}); 
	return $.trim(g);
}


