jQuery(function(){
		var path = window.location.protocol + '//' + window.location.host+'/modules/swap/images/';
		var labels = [];
		labels[1] = '<img src="'+path+'mercedes_e_big.png"/>';
		labels[2] = '<img src="'+path+'audi_a6_big.png"/>';
		labels[3] = '<img src="'+path+'mercedes_e_2_big.png"/>';
		labels[4] = '<img src="'+path+'volvo_s80_big.png"/>';
		labels[5] = '<img src="'+path+'mercedes_s_big.png"/>';
		labels[6] = '<img src="'+path+'volvo_s80_verl_big.png"/>';
		labels[7] = '<img src="'+path+'mercedes_sprinter_big.png"/>';
		labels[8] = '<img src="'+path+'vw_multivan_big.png"/>';

		var labels2 = [];
		labels2[1] = '<img src="'+path+'scania_big.png"/>';
		labels2[2] = '<img src="'+path+'mercedes_sprinter_bus_big.png"/>';
		labels2[3] = '<img src="'+path+'marco_polo_big.png"/>';
		labels2[4] = '<img src="'+path+'bus_35_big.png"/>';
		labels2[5] = '<img src="'+path+'mercedes_bus_big.png"/>';
		
		jQuery('#timeline .timeline-button').mouseover(function(){
			var index = jQuery(this).attr('id').split('-')[2];
			showDescription(index);
		});

		function showDescription(index) {
			jQuery('#timeline-label').html(labels[index]).show();
		}
		
		jQuery('#timeline2 .timeline-button').mouseover(function(){
			var index = jQuery(this).attr('id').split('-')[2];
			showDescription2(index);
		});

		function showDescription2(index) {
			jQuery('#timeline-label2').html(labels2[index]).show();
		}

	});
