function bindImages(){
    var isFlash = fixFlash("#b_pics > div[id*='flash-']");
    var tag = "img";

    if(!isFlash){
        //If there's no flash, add lightbox
        if($('#b_pics  > a').length > 0){
            $('#b_pics > a').lightBox();
        }
        tag = "a";
    }

    $('#p_sub-items > ul> li > a').each(function(){
        $(this).bind("click",function(){
            var id = $(this).attr("id");

            id = id.substr(6);

            //Make sure all elements are hidden
            $('#b_pics > ' + tag + ':not(.hide)').addClass("hide");
            $("#b_pics > div[id*='flash-']:not(.hide)").addClass("hide");

            //Make one visible.
            $('#image-'+id).removeClass("hide");
            $('#flash-'+id).removeClass("hide");

            //Sub items
            $('#p_sub-items > ul > li:.current').removeClass("current");
            $('#thumb-'+id).parent().addClass("current");
            return false;
        });
    });
}
