function enlarge_image(id){
	id = id.substr(6);

    //hide all prop_images
    $('[id^=' + id.substr(0, 9) + ']').hide();

    $('#' + id).show();

}


