$(function(){
	var id = ".dtext";
	$(id).mouseover(function(){
		var tmp = $(this).text();
		$(this).text( $(this).attr("title") );
		$(this).attr("title", tmp );

	});
	$(id).mouseout(function(){
		var tmp = $(this).text();
		$(this).text( $(this).attr("title") );
		$(this).attr("title", tmp );
	});
});

/*Sidebar Drop Menu*/
$(function() {
	$('#nav').droppy();
});