/*
Author: Matt Mayers	http://mattmayers.com/
*/
function wowheadLinks(){
	$('.wowhead').each(function(){
		var el = $(this)
		$.ajax({
			type: "GET",
			url: el.attr('href'),
			dataType: "xml",
			success: function(data){
				el.attr('href',$('link',data).text())
				el.addClass('q'+$('quality',data).attr('id'))
			}
		})
	})
}
$(document).ready(wowheadLinks)