/*-----------------------------------------
 
 copyright 2009 by mmc
 
 Version: 1.0
 
 Author: Georg Paul
 
 Author URI: http://www.mmc-agentur.at
 
 -------------------------------------------*/



$(document).ready(function(){
	
    $('#coda-slider-1').codaSlider({
        autoSlide: true,
		firstPanelToLoad: 1,
        autoSlideInterval: 3000,
        autoSlideStopWhenClicked: true
    });


	
	$('#start-column-left .steps a').css('opacity', '0.5').hover(function(){		
		$(this).css('opacity', '1');
	
		return false;
	},
	function(){
		$(this).css('opacity', '0.5');

	});	
	
});




