$(function() {
	
// Settings
	
	// Value	: Default
	
	// speed		: 500 		- transition speed
	// easing		: 'swing'	- 'swing' / 'linear' or visit http://jqueryui.com/demos/effect/easing.html if you're using jQuery UI (websplanet has it by default)
	// align		: 'right'	- 'left' / 'right' - position of the SDT
	// width		: 'auto'	- 'auto' / number - 'auto' by default, change to a number for custom width
	// height		: 'auto'	- 'auto' / number - 'auto' by default, change to a number for custom height
	// hideText		: false		- true / false  - if set to true, text in the container will be hidden
	// openText 	: 'Open'	- 'text' - text on the button when panel is closed
	// closeText 	: 'Close'	- 'text' - text on the button when panel is opened 
	// parentID		: 'wrapper' - 'wrapper' - ID of container you want your slider to apear
	
	// Example $('#elementID').slideDownThingy({ speed : 600, align: 'left', width: 300 });
	
	$('#slideDownThingy').slideDownThingy({ speed : 700, easing : 'easeInOutExpo', openText : 'Call 0800 783 4710', closeText : 'Call 0800 783 4710' });
});
