(function($) {
	$.fn.syncHeight = function(settings) {
		var max = 0;
		$(this).each(function() {
			var val=$(this).height();
			if(val > max){
			   max = val;
			}
		});
		
		// set synchronized element height ...
 		$(this).each(function() {
  			$(this).css("height",max+'px');
		});
		return this;
	};	
})(jQuery);


jQuery(document).ready(function() {
  jQuery('ul#navigation_main').superfish();
  jQuery('ul#navigation_information').superfish();

});


jQuery(window).load(function() {
  jQuery('.sync_height').syncHeight();
})
