// Initialise the effects
var drpOne;
var drpTwo;
var drpThree;
var drpFour;
var drpFive;

window.onload = function() 
{
	drpOne = new fx.Combo('one', {height: true, opacity: true, duration: 800});
	drpTwo = new fx.Combo('two', {height: true, opacity: true, duration: 800});
	drpThree = new fx.Combo('three', {height: true, opacity: true, duration: 800});
	drpFour = new fx.Combo('four', {height: true, opacity: true, duration: 800});
	drpFive = new fx.Combo('five', {height: true, opacity: true, duration: 800});
	
	drpTwo.hide();
	drpThree.hide();
	drpFour.hide();
	drpFive.hide();
}