/*-------------------------------------------------------------------- 
 * JQuery Plugin: "EqualHeights"
 * by:	Scott Jehl, Todd Parker, Maggie Costello Wachs (http://www.filamentgroup.com)
 *
 * Copyright (c) 2008 Filament Group
 * Licensed under GPL (http://www.opensource.org/licenses/gpl-license.php)
 *
 * Description: Compares the heights or widths of the top-level children of a provided element 
 		and sets their min-height to the tallest height (or width to widest width). Sets in em units 
 		by default if pxToEm() method is available.
 * Dependencies: jQuery library, pxToEm method	(article: 
		http://www.filamentgroup.com/lab/retaining_scalable_interfaces_with_pixel_to_em_conversion/)							  
 * Usage Example: $(element).equalHeights();
  		Optional: to set min-height in px, pass a true argument: $(element).equalHeights(true);
 * Version: 2.0, 08.01.2008
--------------------------------------------------------------------*/

jQuery.fn.equalHeights = function(px) {
	
    var currentTallest = 0;
    jQuery(this).each(function(){		
		jQuery(this).children().each(function(i){
			if (jQuery(this).height() > currentTallest) { currentTallest = jQuery(this).height(); }
		});
		//if (!px || !Number.prototype.pxToEm) currentTallest = currentTallest.pxToEm(); //use ems unless px is specified
		// for ie6, set height since min-height isn't supported
		//if (jQuery.browser.msie && jQuery.browser.version == 6.0) { jQuery(this).children().css({'height': currentTallest}); }		
	});
	                      
	return currentTallest;
};



jQuery(function(){

	// decorate  pdf links
    jQuery('a[href$=".pdf"]').attr("class","pdf");

	// menu hover
	jQuery("ul.submenu li a").hover(
      function () {
        jQuery(this).parent("li").addClass("hover");
      },
      function () {
        jQuery(this).parent("li").removeClass("hover");
      }
    );
    //console.log(jQuery(".content-row-1").children().equalHeights());
    
    if(jQuery(".content-row-1").length > 0) {
        jQuery(".content-row-1 .box-content").height(jQuery(".content-row-1").equalHeights()-35);
        jQuery(".content-row-2 .box-content").height(jQuery(".content-row-2").equalHeights()-35);
        jQuery(".content-row-3 .box-content").height(jQuery(".content-row-3").equalHeights()-35);
        
    }
    
    Eheight = 0;
    if(jQuery(".tarifrechner_results_element_text").length > 0) {       
        
        jQuery(".tarifrechner_results_element_text").each(function() {
        
            if(Eheight < jQuery(this).height()) {
                Eheight = jQuery(this).height();
            }
                
        });
        
        jQuery(".tarifrechner_results_element_text").height(Eheight);
    }
    
});


var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-7344927-1']); // for live
//  _gaq.push(['_setAccount', 'UA-7344927-3']); // for dev
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();
