/*

Author: Matt Mayers	http://mattmayers.com/
Update by Garou http://custom.simplemachines.org/mods/index.php?mod=1633

*/

function wowheadLinks(){

	jQuery('.wowhead').each(function(){

		var el = jQuery(this)

		jQuery.ajax({

			type: "GET",

			url: el.attr('href'),

			dataType: "xml",

			success: function(data){

				el.attr('href',jQuery('link',data).text())

				el.addClass('q'+jQuery('quality',data).attr('id'))

				el.text('[' + jQuery('name', data).text() + ']');

			}

		})

	})

}

jQuery(document).ready(wowheadLinks)

