jQuery.noConflict();
jQuery(document).ready(function($) {
	$('#heidolph_countryselect').bind('mouseover', function() {
		if(typeof(to) !== 'undefined') clearTimeout(to);
	});
	
	$('#heidolph_countryselect li:first').bind('mouseenter', function() {
		if(typeof(to) !== 'undefined') clearTimeout(to);
		showCountryselect();
	});
	
	$('#heidolph_countryselect li:first').bind('click', function() {
		showCountryselect();
	});
	
	$('#heidolph_countryselect').bind('mouseleave', function() {
		hideCountryselect();
	});
	
	function hideCountryselect() {
		if($('#heidolph_countryselect:animated').length > 0) {
		} else {
			if($('#heidolph_countryselect').height() > 20) {
				$('#heidolph_countryselect').animate({height:'20px'},750);
			}
		}
	}
	
	function showCountryselect() {
		if($('#heidolph_countryselect:animated').length > 0) {
		} else {
			var ulheight = 0;
			$('#heidolph_countryselect li').each(function() {
				ulheight += $(this).outerHeight();
			});
			if($('#heidolph_countryselect').height() < ulheight) {
				$('#heidolph_countryselect').animate({height:ulheight+'px'},750);
			}
		}
	}	
});
