var slide_interval = 4000;
var nr_partners = 0;
var curr_nr = 1;

var sub_block = null;
var main_title = null;

google.load("jquery", "1.5.1");
//google.load("jqueryui", "1.8.7");
//google.load("webfont", "1.0.17");

google.setOnLoadCallback(function(){
	if($('.current-menu-parent').length > 0){
		main_title = $('.current-menu-parent').children('a').html();
		sub_block = $('.current-menu-parent').children('ul.sub-menu');
	}else if($('.current-menu-item').length > 0){
		main_title = $('.current-menu-item').children('a').html();
		if($('.current-menu-item').children('ul.sub-menu').length > 0){
			sub_block = $('.current-menu-item').children('ul.sub-menu');
		}
		
	}
	
	// Set Subnavigation
	if(sub_block != null && sub_block != ""){
		if($("#newsletter_subscription").length > 0){
			$("aside").prepend(sub_block);
			$("aside").prepend("<h3>" + main_title + "</h3>");
		}else{
			$("aside").append("<h3>" + main_title + "</h3>");
			$("aside").append(sub_block);
		}
	}
	
	if($('.home_block').length > 0){
		var bH = 0;
		var lH = 0;
		
		$.each($('.home_block'), function(){if($(this).height() > bH) bH = $(this).height();});
		$('.home_block').height(bH + 'px');
		$.each($('.home_link'), function(){if($(this).height() > lH) lH = $(this).height();});
		$('.home_link').height(lH + 'px');
	}
	
	if($('.addr_block').length > 1){
		var bH = 0;
		var lH = 0;
		
		$.each($('.addr_block'), function(){if($(this).height() > bH) bH = $(this).height();});
		$('.addr_block').height(bH + 'px');
	}
	
	window.setTimeout(function() {
		$('.skype_pnh_container').html('');
		$('.skype_pnh_print_container').removeClass('skype_pnh_print_container');
	}, 300);
});
	
