
$(document).ready(function(){
$(".destination .toggleLinks").hide();
$(".destination .twisty").show();
$(".destination .twisty a").toggle(function(){
$(this).css("background-image", "url(/cms/global/assets/images/site/icon/Hide_Symbol.gif)")
.children(".show").hide();
$(this).children(".hide").show();
$(this).parent().parent().children(".toggleLinks").slideDown(500);
}, function(){
$(this).css("background-image", "url(/cms/global/assets/images/site/icon/Show_Symbol.gif)")
.children(".show").show();
$(this).children(".hide").hide();
$(this).parent().parent().children(".toggleLinks").hide();
});
});
