jQuery.noConflict();
jQuery(document).ready(function() {
	jQuery('#nav-lang ul').hide();
	jQuery('#nav-lang').hover(
		function() {
			jQuery('#nav-lang ul').show();
			jQuery('#current-language').addClass('active');
		},
		function() {
			jQuery('#nav-lang ul').hide();
			jQuery('#current-language').removeClass('active');
		}
	); 
	
	
	jQuery('a[href*="http://"]:not([href*="'+location.hostname+'"])').click(function() {
		window.open(this.href);
		return false;
	});
	
	jQuery('#paket-overview table tr').each(function() {
		boxH = jQuery(this).find("td.c1 .box").height();
		jQuery(this).find("td .box").height(boxH);
	});
	
	jQuery("#nav-main a").tooltip({
		position: "bottom center"
	});

});


