//////////////////////////////////
//	Customise Reveal	//
//////////////////////////////////

/*
The following is required only if you
want the user to click to reveal the page
*/
var clickw=350;		// Width
var clickh=120;		// Height
var clickb=42;		// Border width
var clickc="#000000";	// Border color
var clickbg="#000000";	// Background color
var clickt="Enter the eyecandy capital of the world with MrShortcut!";	// Text to display
var clickFont="font-family:verdana,arial,helvetica; font-size:8pt; font-weight:bold; color:#FFFFFF";		// The font style of the text

/*
Following is required to initialise Reveal
The function is called in the following manner :
	initReveal(type,div1bg,div2bg,div1bw,div2bw,div1bc,div2bc,step,timeOut,click)
	Parameter description :
	type	->	0 for vertical | 1 for horizantal
	div1bg	->	Background color of first layer		(eg. '#CCCCCC')
	div2bg	->	Background color of second layer	(eg. '#CCCCCC')	 
	div1bw	->	Border width of first layer		(eg. 1)
	div2bw	->	Border width of second layer		(eg. 1)
	div1bc	->	Border color of first layer		(eg. '#000000')
	div2bc	->	Border color of second layer		(eg. '#000000')
	step	->	The amount revealed every interval	(eg. 5)
	timeOut	->	The delay in milliseconds
	click	->	true if user has to click to reveal | false for auto reveal
	See below for an example of how to call the function.
*/
new initReveal(0,'#B16565','#00ABFD',1,1,'#FF0080','#97004B',3,10,true);
