function setupDropdown(){
    $('div.dropdown').hide();
    $('div.sideTestimonial').each(function(){
	    if($(this).attr('id')!= 'defaultTestimonial'){
		$(this).hide();
	    }
	});
    $('a.dropdown').click(function(e){
	    e.preventDefault();
	    var id = $(this).attr('id');
	    if($('div.'+id).is(':visible')){
		    $('div.'+id).slideUp();
	    }else{
		   var oneupbefore = false;
		   var numDiv = $('div.dropdown').length;
		   var countDiv = 0;
		    $('div.dropdown').each(function(){
			    if(!($(this).hasClass(id)) && $(this).is(':visible')){
				oneupbefore = true;
				$(this).slideUp(500,function(){
				    $('div.'+id).slideDown();
				    });
			    }
			    countDiv += 1;
			    if((countDiv == numDiv) && (oneupbefore == false)){
				$('div.'+id).slideDown();
			    }
			});
		    var testId = '';
		    if($('div#'+id).length){
			testId = id;
		    }else{
			testId = 'defaultTestimonial';
		    }
		    $('div.sideTestimonial').each(function(){
			    if($(this).attr('id')!= testId){
				$(this).hide();
			    }else{
				$(this).show();
			    }
			});
	    }
	});
}
