$(function() {
	$("a").each(
			function ()
			{
				if(this.rel=="external")
				{
					this.target="_blank";
				}
			}
		);
    $('#downloads #desktop ul li').hover(function() {
      $(this).children().addClass('hovered');
    }, function() {
      $(this).children().removeClass('hovered');
    }
    );
});