function dominit() {


$("#nav-main li li > a").tooltip({showURL: false});

/* --------------------------------------------------- Highlight Cheffe in Kommentaren */

$('.comments strong').each(function(i){
	var string = $(this).text().substring(0,10);
	if ((string == "S. Stiener") || (string == "Stefan Sti") || (string == "Velotraum.")) {
		$(this).parent().parent().addClass('chef');
	}
});

/* --------------------------------------------------- Haendlerliste sortieren */

$("#haendler").tablesorter({sortList: [[0,0]]}); 

/* --------------------------------------------------- Exzerpt Paragraph fett */

$('.newsarticle').each(function(i) {
	var firstpara = $(this).find('p')[1];
	$(firstpara).addClass('first');
});


/* --------------------------------------------------- Suchergebnisse: Textkorrektur */

var sh = $('#searchheadline')[0];
if ($(sh).text() == "1 Suchergebnisse") { $(sh).text("1 Suchergebnis"); }
if ($(sh).text() == "0 Suchergebnisse") { $(sh).text("Kein Suchergebnis"); }

/* --------------------------------------------------- Kundengalerie: Linie vor Paginierung */

$('#kundengalerie > div.konzeptpaging').prev().addClass('last');

/* --------------------------------------------------- Headline h1 ist unten bündig, yay! */

myh1 = $('#content > h1:first-child')[0];
blogh1 = $('#content > div:first-child h1')[0];
if ($(myh1).height() > 40) {
	$(myh1).css('padding-top','1.65em')
};
if ($(blogh1).height() > 40) {
	$('.startpage #content').css('padding-top','5.85em')
};

/* --------------------------------------------------- Viewport-Vermessung */

if ($('body').width() < 1053) {
	$('body').addClass('slimscreen');
} else {
	$('body').addClass('widescreen');
}
if ($('body').width() < 1053) {
	$('body').addClass('slimscreen');
} else {
	$('body').addClass('widescreen');
}

/* --------------------------------------------------- Inputfelder Texteingabe */
loginboxtext = "";
$('#search input.text').focus(function(){ 
	loginboxtext = this.value;
	this.value = "";
}).blur(function(){
	if (this.value == "") { 
		this.value = loginboxtext; 
	}
});

/* --------------------------------------------------- Einrückung bei einigen Absätzen (nicht allen) */

$('p + p').not('div.newsarticle p + p, p.teaser + p').addClass('follow-p');


/* --------------------------------------------------- Dynamische Bildleiste */

var images = [];
$("#headerimages img").each(function(i) {		
	images.push(this.src);
});
$("#headerimages *").remove();
$('#headerimages').prepend('<div id="slot1"></div><div id="slot2"></div>');
showimg(images, false, "1");

function showimg(images, exclude, slot) {
  do { nr = Math.floor(Math.random()*images.length); } while (nr == exclude);
  $('#slot'+slot).append('<img src="'+images[nr]+'" alt="" />').hide().fadeIn(1800).delay(3000).fadeIn(1, function(){
    if (slot == "1") { newslot = "2"; } else { newslot = "1"; }
    showimg(images, nr, newslot);
  }).fadeOut(2500, function(){
    $(this).find('img').remove();
  });
}
  
/* old flash version - uncool!
$("#headerimages").prepend("<div id='replaceImages'></div>");

var flashvars = { pic: images };
var params = { wmode: "transparent" };
var attributes = false;
swfobject.embedSWF("/flash/leiste.swf", "replaceImages", "450", "120", "8.0.0","/flash/expressInstall.swf", flashvars, params, attributes);
}
*/

/* --------------------------------------------------- Hauptnavigation */

globalclick = false;

$('body').click(function(){
	if (!globalclick) {
		$('#nav-main > li').removeClass('active');
	}
	globalclick = false;
});

$('#nav-main > li > span').click(function(){
	globalclick = true;
	var myparent = $(this).parent();
	$('#nav-main > li').not(myparent).removeClass('active');
	$(myparent).toggleClass('active');
});

$('#nav-main a, #content, #sidebar').click(function(){
	globalclick = true;
});

$('#menu_modelle ul').before('<ul class="sub1 hidden"></ul><ul class="sub2 hidden"></ul>').find('li').each(function(i){
	if (i < 8) { 
		$(this).appendTo('#menu_modelle .sub1');
	} else {
		$(this).appendTo('#menu_modelle .sub2');
	}
});
$('#menu_modelle ul:last-child').remove();



/* --------------------------------------------------- Bildergalerie */


if ($('.dhonishow').length == 1) {


links = $('.dhonishow a');
images = $('.dhonishow img');

dhonis = new Array();

$.each(images, function(i, value){
	dhonis[i] = new Object();
	dhonis[i]['src'] = value.src;
	dhonis[i]['title'] = value.title;
	dhonis[i]['alt'] = value.alt;
	dhonis[i]['height'] = value.height;
	dhonis[i]['width'] = value.width;
});

$.each(links, function(i, value){
	dhonis[i]['href'] = value.href;
});

number = dhonis.length;

$('.dhonishow').empty().append('<ul class="dhonishow-element"><li></li></ul><div class="dhonishow-navi"><h3></h3><div class="dhonishow-picture-alt"></div></div>');

if (number > 1) { 
	$('.dhonishow .dhonishow-navi').append('<a title="Nächstes Bild" class="dhonishow-next-button">Nächstes Bild</a><p class="dhonishow-paging"></p><a title="Voriges Bild" class="dhonishow-previous-button">Voriges Bild</a>');
}

$('.dhonishow-next-button').click(function(){
	currentpic += 1;
	if (currentpic == (number-1)) {
		$('.dhonishow-next-button').hide();
	} else {
		$('.dhonishow-next-button').show();
	}
	$('.dhonishow-previous-button').show();
	showpic(currentpic);
});

$('.dhonishow-previous-button').click(function(){
	currentpic -= 1;
	if (currentpic == 0) {
		$('.dhonishow-previous-button').hide();
	} else {
		$('.dhonishow-previous-button').show();
	}
	$('.dhonishow-next-button').show();
	showpic(currentpic);
});

function showpic(i) {
	$('.dhonishow-element li').empty().append('<a href="'+dhonis[i]['href']+'" class="thickbox'+i+'" rel="galerie"><img src="' + dhonis[i]['src'] + '" title="'+dhonis[i]['alt']+'" width="' + dhonis[i]['width'] + '" height="' + dhonis[i]['height'] + '" /><span></span></a>');
	$('.dhonishow-navi h3').empty().append(dhonis[i]['alt']);
	//$('.dhonishow-picture-alt').empty().append(superTextile(dhonis[i]['title']));
	$('.dhonishow-picture-alt').empty().append(dhonis[i]['title']);
	tb_init('.thickbox'+i);
}


currentpic = 0;
$('.dhonishow-previous-button').hide();
showpic(0);


}



}




/*
 * jQuery Tooltip plugin 1.3
 *
 * http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/
 * http://docs.jquery.com/Plugins/Tooltip
 *
 * Copyright (c) 2006 - 2008 Jörn Zaefferer
 *
 * $Id: jquery.tooltip.js 5741 2008-06-21 15:22:16Z joern.zaefferer $
 * 
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */
eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}(';(8($){j e={},9,m,B,A=$.2u.2g&&/29\\s(5\\.5|6\\.)/.1M(1H.2t),M=12;$.k={w:12,1h:{Z:25,r:12,1d:19,X:"",G:15,E:15,16:"k"},2s:8(){$.k.w=!$.k.w}};$.N.1v({k:8(a){a=$.1v({},$.k.1h,a);1q(a);g 2.F(8(){$.1j(2,"k",a);2.11=e.3.n("1g");2.13=2.m;$(2).24("m");2.22=""}).21(1e).1U(q).1S(q)},H:A?8(){g 2.F(8(){j b=$(2).n(\'Y\');4(b.1J(/^o\\(["\']?(.*\\.1I)["\']?\\)$/i)){b=1F.$1;$(2).n({\'Y\':\'1D\',\'1B\':"2r:2q.2m.2l(2j=19, 2i=2h, 1p=\'"+b+"\')"}).F(8(){j a=$(2).n(\'1o\');4(a!=\'2f\'&&a!=\'1u\')$(2).n(\'1o\',\'1u\')})}})}:8(){g 2},1l:A?8(){g 2.F(8(){$(2).n({\'1B\':\'\',Y:\'\'})})}:8(){g 2},1x:8(){g 2.F(8(){$(2)[$(2).D()?"l":"q"]()})},o:8(){g 2.1k(\'28\')||2.1k(\'1p\')}});8 1q(a){4(e.3)g;e.3=$(\'<t 16="\'+a.16+\'"><10></10><t 1i="f"></t><t 1i="o"></t></t>\').27(K.f).q();4($.N.L)e.3.L();e.m=$(\'10\',e.3);e.f=$(\'t.f\',e.3);e.o=$(\'t.o\',e.3)}8 7(a){g $.1j(a,"k")}8 1f(a){4(7(2).Z)B=26(l,7(2).Z);p l();M=!!7(2).M;$(K.f).23(\'W\',u);u(a)}8 1e(){4($.k.w||2==9||(!2.13&&!7(2).U))g;9=2;m=2.13;4(7(2).U){e.m.q();j a=7(2).U.1Z(2);4(a.1Y||a.1V){e.f.1c().T(a)}p{e.f.D(a)}e.f.l()}p 4(7(2).18){j b=m.1T(7(2).18);e.m.D(b.1R()).l();e.f.1c();1Q(j i=0,R;(R=b[i]);i++){4(i>0)e.f.T("<1P/>");e.f.T(R)}e.f.1x()}p{e.m.D(m).l();e.f.q()}4(7(2).1d&&$(2).o())e.o.D($(2).o().1O(\'1N://\',\'\')).l();p e.o.q();e.3.P(7(2).X);4(7(2).H)e.3.H();1f.1L(2,1K)}8 l(){B=S;4((!A||!$.N.L)&&7(9).r){4(e.3.I(":17"))e.3.Q().l().O(7(9).r,9.11);p e.3.I(\':1a\')?e.3.O(7(9).r,9.11):e.3.1G(7(9).r)}p{e.3.l()}u()}8 u(c){4($.k.w)g;4(c&&c.1W.1X=="1E"){g}4(!M&&e.3.I(":1a")){$(K.f).1b(\'W\',u)}4(9==S){$(K.f).1b(\'W\',u);g}e.3.V("z-14").V("z-1A");j b=e.3[0].1z;j a=e.3[0].1y;4(c){b=c.2o+7(9).E;a=c.2n+7(9).G;j d=\'1w\';4(7(9).2k){d=$(C).1r()-b;b=\'1w\'}e.3.n({E:b,14:d,G:a})}j v=z(),h=e.3[0];4(v.x+v.1s<h.1z+h.1n){b-=h.1n+20+7(9).E;e.3.n({E:b+\'1C\'}).P("z-14")}4(v.y+v.1t<h.1y+h.1m){a-=h.1m+20+7(9).G;e.3.n({G:a+\'1C\'}).P("z-1A")}}8 z(){g{x:$(C).2e(),y:$(C).2d(),1s:$(C).1r(),1t:$(C).2p()}}8 q(a){4($.k.w)g;4(B)2c(B);9=S;j b=7(2);8 J(){e.3.V(b.X).q().n("1g","")}4((!A||!$.N.L)&&b.r){4(e.3.I(\':17\'))e.3.Q().O(b.r,0,J);p e.3.Q().2b(b.r,J)}p J();4(7(2).H)e.3.1l()}})(2a);',62,155,'||this|parent|if|||settings|function|current||||||body|return|||var|tooltip|show|title|css|url|else|hide|fade||div|update||blocked|||viewport|IE|tID|window|html|left|each|top|fixPNG|is|complete|document|bgiframe|track|fn|fadeTo|addClass|stop|part|null|append|bodyHandler|removeClass|mousemove|extraClass|backgroundImage|delay|h3|tOpacity|false|tooltipText|right||id|animated|showBody|true|visible|unbind|empty|showURL|save|handle|opacity|defaults|class|data|attr|unfixPNG|offsetHeight|offsetWidth|position|src|createHelper|width|cx|cy|relative|extend|auto|hideWhenEmpty|offsetTop|offsetLeft|bottom|filter|px|none|OPTION|RegExp|fadeIn|navigator|png|match|arguments|apply|test|http|replace|br|for|shift|click|split|mouseout|jquery|target|tagName|nodeType|call||mouseover|alt|bind|removeAttr|200|setTimeout|appendTo|href|MSIE|jQuery|fadeOut|clearTimeout|scrollTop|scrollLeft|absolute|msie|crop|sizingMethod|enabled|positionLeft|AlphaImageLoader|Microsoft|pageY|pageX|height|DXImageTransform|progid|block|userAgent|browser'.split('|'),0,{}))
