function accord(p) {
	$("#content-accordian .bottom").slideUp();
	if(!$("#"+p+":visible").length)
		$("#"+p).slideDown();
}

function subnav(p) {
	$(".subnav-hide").slideUp();
	if(!$("#"+p+":visible").length)
		$("#"+p).slideDown();
}

function portfolioSwap(intNewImage) {
	$('#anderson_gallery img').hide();
	$('#anderson_gallery img#gallery_item_'+intNewImage).show();
	$('.gallery_control').css('background-color', '#696969');
	$('#gc'+intNewImage).css('background-color', '#4378bc');
}

function portfolioClean () {
    if ($('#anderson_gallery img').length < 3) {
        $('#gc3').hide();
    }
    if ($('#anderson_gallery img').length < 2) {
        $('#gc2').hide();
        $('#gc1').hide();
    }
}

$('document').ready(function () {
    portfolioClean();
});
