$(document).ready(function()
{
	$('a[rel="external"]').each(function()
	{
		if(this.href != '' && this.href != '#')
		{
			$(this).attr('target','_blank');
		}
    });

    $('#center_content a').each(function()
    {
		var $thisColor = $(this).css('color');

		$(this).hover(function()
		{
			$(this).animate({'color' : '#9b64ea'});
		}, 
		function()
		{
			$(this).animate({'color' : $thisColor});
		});
    });
});


