jQuery('document').ready(
	function(){
		jQuery('#LocationContainer').hide();
		jQuery('#ShowLocations').bind('click',
			function(){
				DD_roundies.addRule('div #LocationContainer', '10px');
				DD_roundies.addRule('div#AdContainer div h2 a ', '10px');
				if(jQuery('#LocationContainer').css('display') != 'block')
					jQuery('#LocationContainer').show();
				else
					jQuery('#LocationContainer').hide();
			}
		);
		
		jQuery('#CloseShowLocations').bind('click',
			function(){
					jQuery('#LocationContainer').hide();
			}
		);
	
	}
);
