function slideInator5000(element,action,setDelay,setOffset,setSpeed) {
	
	// INSTRUCTIONS:
	// You must run function twice:
	// Once with action='ready' to be loaded before content is displayed ('ready' hides content and offsets position upwards)
	// Second time with action='slide' to be loaded wherever you require slide action ('slide' initiates slide and fade animation, moving content to original position)
	
	if(setDelay == null) {setDelay=0;}
	if(setOffset == null) {setOffset = 20;}
	if(setSpeed == null) {setSpeed = 550;}

	if(action == "ready") {
		var offset = $(element).offset();
		var originalPosition = offset.top;
		var newPostition = originalPosition - setOffset;
		$(element).offset({top: newPostition});
		$(element).css("opacity","0");
	}
	
	if(action == "slide") {
		$(element).delay(setDelay).animate({
			top: '+='+setOffset,
			opacity: 1
		}, setSpeed, 'swing' );
	}

}
