// JavaScript Document


// FONTREPLACEMENT
//			Cufon.replace('h1', {hover: true});
//			Cufon.replace('h2', {hover: true});
//			Cufon.replace('h3', {hover: true});
//			Cufon.replace('h4', {hover: true});
//			Cufon.replace('h5', {hover: true});
//			Cufon.replace('h6', {hover: true});



// EQUAL Heights
(function($) {
 	$.fn.equalHeights = function() {
 		var targetHeight = 0;
 		this.each(function() {
 			if ($(this).height() > targetHeight) targetHeight = $(this).height();
 		});
 		this.each(function() {
 			$(this).height(targetHeight);
 		});
 		return this;
 	};
})(jQuery);

// EQUAL for Betriebssuche
$(document).ready(function() { 

	$(".dir_showfeeds").equalHeights(); 

});


// Fade In Startpage
$(document).ready(function() {

	$("#blog").fadeIn(1500);

});
