function swapImages(div,url,id) {
    for (i=0;i<=16;i++) $("#g"+i).removeClass("selected");
    $("#"+div).hide().load(url).fadeIn("slow");
    $("#"+id).addClass("selected");
}
function getImages(div,url) {
    getImagesLoading('main_inner','/wp-content/themes/aleda/_ajax_gallery_loading.php');
    $("#"+div).load(url);
}
function getImagesLoading(div,url) {
    $("#"+div).hide().load(url).fadeIn("slow");
}
function switchLinks(div) {
    var other = '';
    if (div != 'c' && div != 'f') div = 'c';
    if (div == 'c') {
        other = 'f';
        var remove = 'friends';
        var add = 'corporate';
    } else {
        other = 'c';
        var remove = 'corporate';
        var add = 'friends';
    }
    $("#"+remove).removeClass("links_selected");
    $("#"+add).addClass("links_selected");
    $("#"+other).hide();
    $("#"+div).fadeIn("normal");
}