/**
 * @author PerSteinhorst
 */

$(window).load(function() {
    $('#slider').nivoSlider({
    	directionNav: false,
    	controlNav: false,
    	pauseTime: 5000,
    	pauseOnHover: false
    });
});

$(document).ready( function() {
	$('#menu li').hover(
        function () {
            //show its submenu
            $('.sub-menu', this).stop(true, true).slideDown(250);
 
        },
        function () {
            //hide its submenu
            $('.sub-menu', this).stop(true, true).hide();        
        }
   );

  $('#filialenMenu a').click( function() {
  	 $('#filialenMenu a').removeClass("FMactive"); //alle klassen löschen ( vorherige FMactive's )
  	  $(this).addClass('FMactive'); //Beim geclicktem object klasse setzen
  	  var elem = $(this).attr('href'); //href auslesen
  	  var height = 392; //höhe des contents
  	  var scrollLength = height * (elem.substr(1) - 1);
  	  //alert($('#filialenContent').height());
		//$('#filialenContent').animate({scrollTop: scrollLength }, 300, 'linear');
		$('#filialenContent').scrollTo(elem,800);	
		return false;
  });
  
  $('.slideFiliale').click( function() {
  	  var elem = $(this).attr('href'); //href auslesen
  	  var height = 392; //höhe des contents
  	  var scrollLength = height * (elem.substr(1) - 1);
  	  //alert($('#filialenContent').height());
		//$('#filialenContent').animate({scrollTop: scrollLength }, 300, 'linear');
		$('#filialenContent').scrollTo(elem,800);	
		return false;
  });
  
  $("#angeboteLeft").click( function() {
  	$("#angeboteContent").animate({scrollLeft:"-=289px"},200,'linear');
  });
  $("#angeboteRight").click( function() {
  	$("#angeboteContent").animate({scrollLeft:"+=289px"},200,'linear');
  });
  
});

