function init()
{

	/*--- circle fader ---*/
	if(typeof($().cycle) == 'function'){
		$('#banner').cycle({ 
			timeout: 10000, 
			pause: 1
		});
	}
	/*--- menu ---*/
	$('#nav_main li:has("ul")').each(function(){
		var _el = $(this);
		var _box = _el.children("ul");
		_box.css({width:_box.width(), display:'none'});
		_box.find('li').css('float', 'none');
		_box.find('a').css('float', 'none');
	});
	$("#nav_main > ul").superfish({
		showDelay: 200,
		hideDelay: 800,
		animation:   {opacity:'show',height:'show'}
	}); 
	
	$(".columns").equalHeights(100);

	//if ($("#scrollintoview"))
		$("html,body").animate({scrollTop: $("#scrollintoview").offset().top-100},10);

}