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