

// ### jQuery Navi Hover Effekt: ###
jQuery(function(){
	jQuery('#nav1 a, #nav2 a, #nav3 a, #nav4 a, #nav5 a')
		.css( {backgroundPosition: "0 0"} )
		.mouseover(function(){
			jQuery(this).stop().animate({opacity: 0.0}, {duration:200})
		})
		.mouseout(function(){
			jQuery(this).stop().animate({opacity: 1.0}, {duration:300})
		})

});


// ### easyTooltip ###

jQuery(document).ready(function(){
	jQuery("#wrapper a").easyTooltip();	
	jQuery('a[href^="mailto:"]').hover(
		function(){
                jQuery(this).attr('title','Schreiben Sie uns.');
                jQuery(this).easyTooltip();
  		}, 
  		function(){
  				jQuery(this).attr('title','Schreiben Sie uns.');
		});
});


jQuery(document).ready(function(){
    // SEO HIDE
    jQuery("#seo_block").hide();
    
  
      
    
    
    
});






// ### Equalhights - 3 gleiche Spalten auf Startseite ###

/*jQuery(document).ready(function() {
    jQuery(".class").equalHeights(300,500);
}); */






/*
// JavaScript Document
// Rollover ---------------------------------------------------------------------
// Browser
browser_name = navigator.appName;
browser_version = parseFloat(navigator.appVersion);
if (browser_name == "Netscape" && browser_version >= 3.0) {
	rollover = 'true';
}else if (browser_name == "Microsoft Internet Explorer" && browser_version >= 4.0){
	rollover = 'true';
}else {
	rollover = 'false'; 
}
function rein1(img) {
	if (rollover == 'true') {
		document.images[img].src = document.images[img].src.replace("_0.gif", "_1.gif");
	}
} 
function raus1(img) {
	if (rollover == 'true') {
		document.images[img].src = document.images[img].src.replace("_1.gif", "_0.gif");
	}
}*/


// ### jQuery Navi Hover ###
/*
jQuery(document).ready(function() {
        jQuery('#naviC a img').hover(
            function() {
                this.src = this.src.replace('_0.gif','_1.gif');
            },
            function() {
                this.src = this.src.replace('_1.gif','_0.gif');
            }
        );
    });
*/



// ### Suchfeld ###
function clearField(obj){
	if(obj.value == search_def_str){
	  obj.value = "";
	}
}
function showDefault(obj){
	if(obj.value == ""){
	  obj.value = search_def_str;
	}
}







