$j(document).ready(function() {
	$j('.topLevelCountrySub').hide();
		
	$j('.topLevelCountry .domainSearchName').live('click', function(){	
		var tlc = $j(this).parents('.topLevelCountry');	
		if (tlc.hasClass('topLevelCountryExtended')){
			tlc.parent().find('.topLevelCountrySub.'+tlc.attr('id')).hide();
			tlc.removeClass('topLevelCountryExtended');
		}else{
			tlc.parent().find('.topLevelCountrySub.'+tlc.attr('id')).fadeIn(1000);
			tlc.addClass('topLevelCountryExtended');
		}
	});
	
	$j('.topLevelCountry .addItemToCart').live('click', function(){
		var tlc = $j(this).parents('.topLevelCountry');	
		if ( ! tlc.hasClass('topLevelCountryExtended')){
			tlc.parent().find('.topLevelCountrySub.'+tlc.attr('id')).fadeIn(1000);
			tlc.addClass('topLevelCountryExtended');
		}		
	});
	
	$j('.expandAllTld').live('click', function() {
		$j('.topLevelCountry .domainSearchName').trigger('click');		
	});
});
 
