$(document).ready(function() 
{
	$('#store_top_listing_open1').click( function () {
		if ($('#top_listing1').is(":visible"))
		{
			$('#top_listing1').hide();
			$('#store_top_listing_open1').html('Show Categories');
		}
		
		else
		{
			$('#top_listing1').fadeTo('slow', 0.9);
			$('#store_top_listing_open1').html('Hide Categories');			
		}
	});
	
	$('#store_top_listing_open2').click( function () {
		if ($('#top_listing2').is(":visible"))
		{
			$('#top_listing2').hide();
			$('#store_top_listing_open2').html('Show Categories');
		}
		
		else
		{
			$('#top_listing2').fadeTo('slow', 0.9);
			$('#store_top_listing_open2').html('Hide Categories');
		}
	});	
	
	$('#store_top_listing_open3').click( function () {
		if ($('#top_listing3').is(":visible"))
		{
			$('#top_listing3').hide();
			$('#store_top_listing_open3').html('New Products?');
		}
		
		else
		{
			$('#top_listing3').fadeTo('slow', 0.9);
			$('#store_top_listing_open3').html('Hide Categories');			
		}
	});
});
