function showDrop(theDropDiv){
    var $divDrop = theDropDiv;
    $divDrop.children("a").each(function(){
        if ($(this).css("display") == "block"){
            $(this).hide();
        }else{
            $(this).css("display", "block");
        }
    });
}
$(function(){
	$("a#heroReadMore").click(function(){
	    $("div#heroMoreInfo").toggle();
	    return false;
	});
	$("a#closeMore").click(function(){
	    $("div#heroMoreInfo").toggle();
	    return false;
	});
	$("a.dropArrow").click(function(){
	    $theList = $(this).siblings("div.colDrop").children("div.innerDrop");
	    $("div.innerDrop a").not($theList.children("a")).hide();
	    showDrop($theList);
	    return false;
	});
	$("a.select1").click(function(){
	    $theList = $(this).siblings("div.innerDrop");
	    $("div.innerDrop a").not($theList.children("a")).hide();
	    showDrop($theList);
	    return false;
	});
});