function goToByScroll(id){
    $('html,body').animate({scrollTop: $("#"+id).offset().top},'slow');
}



  // Teaser
  $(document).ready(function(){
  	$("#n-language").bind("mouseover", function() {
		$(this).addClass("focus");
	}).bind("mouseout", function() {
		$(this).removeClass("focus");
	})/*.find(">a").bind("click", function() {
		return false;
	})*/;
  
  /*
    $('div.teaser-head-move').bind("click", function(){
        strName = this.id;
        if ($('#' + strName + '-content').css("display") == "none") {
            $('#' + strName + '-content').slideDown("fast");
            $('#' + strName).addClass("teaser-head-move-open");
        } else {
            $('#' + strName + '-content').slideUp("fast");
            $('#' + strName).removeClass("teaser-head-move-open");
        }
    });  
    
    $('div.teaser-head-move-open').bind("click", function(){
        strName = this.id;
        if ($('#' + strName + '-content').css("display") == "none") {
            $('#' + strName + '-content').slideDown("fast");
            $('#' + strName).addClass("teaser-head-move-open");
        } else {
            $('#' + strName + '-content').slideUp("fast");
            $('#' + strName).removeClass("teaser-head-move-open");
            $('#' + strName).addClass("teaser-head-move");
        }
    });  
    */
    
  });
