
//EFFECTS----------------------------------------------------------
		
	
  function applyScrollLeft(targ)
	{
		new Effect.Move($(targ), {y:0, x:-468, mode: 'relative'});
		new Effect.Appear($(targ), {from:0.2, to:1.0});
	}
	function applyScrollRight(targ)
	{
		new Effect.Move($(targ), {y:0, x:468, mode: 'relative' });
		new Effect.Appear($(targ), {from:0.2, to:1.0});
	}
	
	function applyEffectError(targ)
	{
		new Effect.Appear($(targ), {from:0.0, to:0.1});
	}
	
	function applyEffect(targ)
	{
		new Effect.Appear($(targ), {duration:3});
	}
	
	function applyHideArr(arr)
	{
 		for (i=0; i<arr.length; i++) {
			new Effect.Fade($(arr[i]), {from:0.1, to:0.0});
		}
  }

   
