$(document).ready(function() {
	
	if(section == 'home')
		t = setTimeout("loadTimeline()",1100);
	else
		showTimeline();
	//menu bianco
	$('#navigator li:not(.image) a').click(function(e) {
		e.preventDefault();
		if($(this).hasClass('opened'))
			return false;
		else
		{
			$('.opened').removeClass('opened');
			$(this).addClass('opened');
		}
		ul = $(this).next().html();
		ulSection = $(this).next().attr('class').replace('subnavigator no-display ','');
		dest = $('#subnavigator-w');
		$(dest).children().remove();
		if(ul)
		{
			$(this).addClass('opened');
			subnav = $("<ul/>").attr('id','subnavigator').css({ 'opacity': 0 }).append(ul).prependTo(dest);
			addLoader($('#subnavigator-w').find('a'),1);

			if($('#hidden').hasClass('close'))
			{
				$('#hidden').animate({ 'height': 40 }, 500, 'easeOutExpo', function() {
					subnav.animate({ 'opacity': 1 }, 300).addClass(ulSection);
					$('#hidden').removeClass('close').css({ height: 'auto' });
				});
			}
			else
			{
				subnav.animate({ 'opacity': 1 }, 300).addClass(ulSection);
			}
		}	
	});
	if($('#map-showroom').length)
		getMap(lat, lng, $('#map-showroom'));
	
});
