/****************************************************************************
*																			*
*	WOW Guild armory by Jordy Houtman is licensed under a 					*
*	Creative Commons Attribution-Noncommercial-Share Alike 3.0 				*
*	United States License. Based on a work at 								*
*	downloads.jordyhoutman.com/projects/guildinfo/guildinfo.zip. 			*
*																			*
*	Designated data is linked from the World of Warcraft™ Armory, 			*
*	by Blizzard Entertainment®.												*
*																			*
****************************************************************************/


function getContentinAjax(url) {
    $('loader_div').show();
	$('Armory').hide();
	new Ajax.Request(url, { 
	 method: 'GET',
		onComplete: function(transport) { 
  			$('Armory').innerHTML = transport.responseText;
		    $('loader_div').hide();
			$('Armory').show();
			fixHover();
	  	},
		onFailure: function (transport) {
		    $('loader_div').hide();
			$('Armory').show();
			fixHover();
		}
	}); 
	
}



function FadeIn(element)
{	
	new Effect.Opacity(element, { from: 0.5, to: 1, duration: 0.5, delay: 0.2 });return false;
}

function FadeOut(element)
{
	new Effect.Opacity(element, { from: 1, to: 0.5, duration: 1, delay: 1}); return false;
}

function Slide(element)
{
	new Effect.toggle(element, 'appear', { duration: 0.5 });	 return false;
}
