function init() {

	var mainImg = document.getElementById('main-image');
	if(mainImg)	{
		fademainimg = new fx.Opacity(mainImg, {duration: 3000});
		fademainimg.hide();
		fademainimg.toggle();
	}

	var sectImg = document.getElementById('section-image');
	if(sectImg)	{
		fadesectimg = new fx.Opacity(sectImg, {duration: 3000});
		fadesectimg.hide();
		fadesectimg.toggle();
	}

	var productImg = document.getElementById('product-image');

	if(productImg)	{
		fadeproductimg = new fx.Opacity(productImg, {duration: 2500});
		fadeproductimg.hide();
		fadeproductimg.toggle();
	}

	var login = document.getElementById('login_form');
	var logout = document.getElementById('logout');
	
	if(login)	{
		//document.getElementById('login_form').style.height = '0';
		combo = new fx.Combo(login, {height:true, opacity:true, duration: 750});
		combo.hide();
	}
	else if(logout)	{
		//document.getElementById('logout').style.height = '0px';
		fadein = new fx.Combo(logout, {height:true, opacity:true, duration: 750});

		fadein.hide();

		fadein.toggle();
	}

}