﻿function ShowHideBasic()
{
	$('#BasicSiteList').toggle();
	$('#BasicShowList').toggle();
	$('#BasicHideList').toggle();		
}
function ShowHidePlus()
{
	$('#PlusSiteList').toggle();
	$('#PlusShowList').toggle();
	$('#PlusHideList').toggle();		
}
function ShowHideFeatured()
{
	$('#FeaturedSiteList').toggle();
	$('#FeaturedShowList').toggle();
	$('#FeaturedHideList').toggle();		
}

function ShowPlaceHolders(listingID)
{
    $('#PlaceHolderSiteList_' + listingID).toggle();
    $('#PlaceHolderShow_' + listingID).toggle();
    $('#PlaceHolderHide_' + listingID).toggle();
}
