// <![CDATA[

	Effect.tagifyText('Logo');
	Effect.tagifyText('Kristi');
	Effect.tagifyText('Stamp');
 	Effect.tagifyText('Loader');
 	Effect.tagifyText('GalleryContainer');
	
	var x = 1;
	new Effect.Appear('Logo', { duration: 3.0 , from: 0.0 , to: 1.0});
	
	setTimeout("new Effect.Appear('Kristi', { duration: 3.0 , from: 0.0 , to: 1.0});",900);
	
	new Draggable('Stamp',{
	handle:'handleStamp',
	revert:function(element){return ($('shouldrevertStamp').checked)},
	onStart:function(){},
	onDrag:function(){},
	onEnd:function(){ 
	
	
	if (x==1) {
		setTimeout("alert('Why do you feel the need to change things?');",300);
	} else if (x==3) {
		setTimeout("alert('Hmmm do you not like my design?');",300);
	} else if (x>5) {
		setTimeout("alert('Alright this is silly.');",100);
		new Effect.Fade('Stamp',{duration:2});
	}
	x++;
	 }
  });
  
	
  	new Draggable('GalleryContainer',{
	handle:'GalleryContainer',
	revert:function(element){return false;},
	onStart:function(){},
	onDrag:function(){},
	onEnd:function(){}
	});

// ]]>

